From a9f170f61326c8240fa1b8bfcf68fa06d18a2604 Mon Sep 17 00:00:00 2001 From: Mary Guillemard Date: Fri, 12 Apr 2024 10:38:29 +0200 Subject: [PATCH] panvk: Fix driver UUID not being filled Signed-off-by: Mary Guillemard Reviewed-by: Erik Faye-Lund Reviewed-by: Boris Brezillon Part-of: --- src/panfrost/vulkan/panvk_physical_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panfrost/vulkan/panvk_physical_device.c b/src/panfrost/vulkan/panvk_physical_device.c index f8b583c565e..cbd20287b28 100644 --- a/src/panfrost/vulkan/panvk_physical_device.c +++ b/src/panfrost/vulkan/panvk_physical_device.c @@ -330,7 +330,7 @@ panvk_physical_device_init(struct panvk_physical_device *device, vk_warn_non_conformant_implementation("panvk"); - get_driver_uuid(&device->device_uuid); + get_driver_uuid(&device->driver_uuid); get_device_uuid(&device->device_uuid); device->drm_syncobj_type = vk_drm_syncobj_get_type(device->kmod.dev->fd);