From 290d480c55199e013fdfb91e948046f23d9c704d Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Wed, 6 May 2020 09:31:58 +0200 Subject: [PATCH] radv: do not print the LLVM version string twice in hang reports MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit It's already part of the device name, and it should now also correctly report when ACO is used. Signed-off-by: Samuel Pitoiset Acked-by: Daniel Schürmann Reviewed-by: Bas Nieuwenhuizen Part-of: --- src/amd/vulkan/radv_debug.c | 3 +-- 1 file changed, 1 insertion(+), 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); -- 2.30.2