From b2e9eaf7e7c23559e8563e52623491638fddf166 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Mon, 31 Oct 2022 18:39:43 +0000 Subject: [PATCH] vk/runtime: drop incorrect UNUSED annotation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Eric Engestrom Reviewed-by: Iago Toral Quiroga Reviewed-by: Alejandro PiƱeiro cc: mesa-stable Part-of: (cherry picked from commit c6c5949ff70a47c47795fe9161a7514173b5be24) --- .pick_status.json | 2 +- src/vulkan/runtime/vk_device.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.pick_status.json b/.pick_status.json index 51a177861b6..3d82e5ced83 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -1732,7 +1732,7 @@ "description": "vk/runtime: drop incorrect UNUSED annotation", "nominated": true, "nomination_type": 0, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": null }, diff --git a/src/vulkan/runtime/vk_device.c b/src/vulkan/runtime/vk_device.c index 57883a2ac83..3adc0669daa 100644 --- a/src/vulkan/runtime/vk_device.c +++ b/src/vulkan/runtime/vk_device.c @@ -197,7 +197,7 @@ vk_device_init(struct vk_device *device, } void -vk_device_finish(UNUSED struct vk_device *device) +vk_device_finish(struct vk_device *device) { /* Drivers should tear down their own queues */ assert(list_is_empty(&device->queues));