From ea107e588d5bc56644f544e1d01b0d254b740e32 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Wed, 7 Jan 2026 14:00:53 +0100 Subject: [PATCH] pvr: clean up include We don't need pvr_physical_device.h included here, but we *do* need it in pvr_arch_framebuffer.c, so let's move the include there. This will help with avoiding circular includes. Fixes: e762592bffe ("pvr: build pvr_arch_*.c as a multi-arch sources") Reviewed-by: Ashish Chauhan Part-of: --- src/imagination/vulkan/pvr_arch_framebuffer.c | 1 + src/imagination/vulkan/pvr_formats.h | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imagination/vulkan/pvr_arch_framebuffer.c b/src/imagination/vulkan/pvr_arch_framebuffer.c index 9bc3cb8f4bf..f1a7bec9a8a 100644 --- a/src/imagination/vulkan/pvr_arch_framebuffer.c +++ b/src/imagination/vulkan/pvr_arch_framebuffer.c @@ -23,6 +23,7 @@ #include "pvr_hw_pass.h" #include "pvr_image.h" #include "pvr_pass.h" +#include "pvr_physical_device.h" #include "pvr_rt_dataset.h" #include "pvr_spm.h" diff --git a/src/imagination/vulkan/pvr_formats.h b/src/imagination/vulkan/pvr_formats.h index 41d9aa85055..d821005a8e2 100644 --- a/src/imagination/vulkan/pvr_formats.h +++ b/src/imagination/vulkan/pvr_formats.h @@ -29,7 +29,6 @@ #include #include "pvr_macros.h" -#include "pvr_physical_device.h" #include "util/format/u_formats.h" #include "vk_format.h"