]> Git Repo - linux.git/commitdiff
drm/sun4i: hdmi: Add missing drm_atomic header
authorMaxime Ripard <[email protected]>
Fri, 1 Mar 2024 08:02:49 +0000 (09:02 +0100)
committerDave Airlie <[email protected]>
Fri, 1 Mar 2024 09:10:29 +0000 (19:10 +1000)
Commit 358e76fd613a ("drm/sun4i: hdmi: Consolidate atomic_check and
mode_valid") added a call to drm_atomic_get_new_connector_state() but
didn't include drm_atomic.h which defines it.

On some configuration, this leads to a build failure, presumably because
in the common case the header gets included by an intermediate header
but it isn't always the case.

Let's add a proper include.

Reported-by: Dave Airlie <[email protected]>
Reported-by: kernel test robot <[email protected]>
Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/
Fixes: 358e76fd613a ("drm/sun4i: hdmi: Consolidate atomic_check and mode_valid")
Signed-off-by: Maxime Ripard <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
drivers/gpu/drm/sun4i/sun4i_hdmi_enc.c

index b7cf369b19069a05de201d960ef48c6ed6b3263e..69001a3dc0df23380d4e5f3a3c973b9c73ba3065 100644 (file)
@@ -16,6 +16,7 @@
 #include <linux/regmap.h>
 #include <linux/reset.h>
 
+#include <drm/drm_atomic.h>
 #include <drm/drm_atomic_helper.h>
 #include <drm/drm_edid.h>
 #include <drm/drm_encoder.h>
This page took 0.056636 seconds and 4 git commands to generate.