diff options
author | Samuel Pitoiset <[email protected]> | 2020-05-06 09:31:58 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2020-05-08 08:45:26 +0200 |
commit | 290d480c55199e013fdfb91e948046f23d9c704d (patch) | |
tree | 46a5419956b66e97e56d4f18c56e88abce71a7f0 /src/amd | |
parent | b1ef1c1211373f9336aaf87de865ef7f0c29fc44 (diff) |
radv: do not print the LLVM version string twice in hang reports
It's already part of the device name, and it should now also
correctly report when ACO is used.
Signed-off-by: Samuel Pitoiset <[email protected]>
Acked-by: Daniel Schürmann <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4911>
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/vulkan/radv_debug.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/amd/vulkan/radv_debug.c b/src/amd/vulkan/radv_debug.c index 5ff6b6f5e1b..5508243bad8 100644 --- a/src/amd/vulkan/radv_debug.c +++ b/src/amd/vulkan/radv_debug.c @@ -567,8 +567,7 @@ radv_dump_device_name(struct radv_device *device, FILE *f) snprintf(kernel_version, sizeof(kernel_version), " / %s", uname_data.release); - fprintf(f, "Device name: %s (%s DRM %i.%i.%i%s, LLVM " - MESA_LLVM_VERSION_STRING ")\n\n", + fprintf(f, "Device name: %s (%s / DRM %i.%i.%i%s)\n\n", chip_name, device->physical_device->name, info->drm_major, info->drm_minor, info->drm_patchlevel, kernel_version); |