diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/intel/vulkan/anv_perf.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/intel/vulkan/anv_perf.c b/src/intel/vulkan/anv_perf.c index 6a9fb4f6f11..a6b94203422 100644 --- a/src/intel/vulkan/anv_perf.c +++ b/src/intel/vulkan/anv_perf.c @@ -202,11 +202,8 @@ VkResult anv_QueueSetPerformanceConfigurationINTEL( } else { int ret = gen_ioctl(device->perf_fd, I915_PERF_IOCTL_CONFIG, (void *)(uintptr_t) _configuration); - if (ret < 0) { - return anv_device_set_lost(device, - "i915-perf config failed: %s", - strerror(ret)); - } + if (ret < 0) + return anv_device_set_lost(device, "i915-perf config failed: %m"); } return VK_SUCCESS; |