From 87809f623605bc8ac8d6624f745edad97ecabf9f Mon Sep 17 00:00:00 2001 From: Daniel Stone Date: Fri, 15 Nov 2024 13:38:31 +0000 Subject: [PATCH] pipe_loader: Fix pipe_i915 with the dynamic loader When building for the dynamic loader used by e.g. Clover, pipe_i915 was the only target failing to declare a driver descriptor. This becomes an error with more aggressive linkers. Signed-off-by: Daniel Stone Fixes: 87392385b59d ("gallium/drm: Define the DRM entrypoints in drm_helper.h") Part-of: --- src/gallium/targets/pipe-loader/pipe_i915.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/targets/pipe-loader/pipe_i915.c b/src/gallium/targets/pipe-loader/pipe_i915.c index 82daf7083e5..a67f66a6b57 100644 --- a/src/gallium/targets/pipe-loader/pipe_i915.c +++ b/src/gallium/targets/pipe-loader/pipe_i915.c @@ -1,5 +1,5 @@ - -#include "target-helpers/inline_debug_helper.h" #include "frontend/drm_driver.h" +#include "target-helpers/drm_helper.h" +#include "target-helpers/inline_debug_helper.h" #include "i915/drm/i915_drm_public.h" #include "i915/i915_public.h"