diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2022-06-13 22:03:13 +0200 |
---|---|---|
committer | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2022-06-20 22:53:55 +0200 |
commit | 7c1e1c5e0eb66bcbbedde92eb2bd988016cf2716 (patch) | |
tree | a6753aa89ed45f3f4914be706d2b9e1c28abf506 /include/drm/drm_crtc.h | |
parent | drm: Drop drm_blend.h from drm_crtc.h (diff) | |
download | linux-7c1e1c5e0eb66bcbbedde92eb2bd988016cf2716.tar.xz linux-7c1e1c5e0eb66bcbbedde92eb2bd988016cf2716.zip |
drm: Drop drm_connector.h from drm_crtc.h
drm_crtc.h has no need for drm_connector.h, so don't include it.
Avoids useless rebuilds of the entire universe when
touching drm_connector.h.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220613200317.11305-5-ville.syrjala@linux.intel.com
Acked-by: Jani Nikula <jani.nikula@intel.com>
Diffstat (limited to 'include/drm/drm_crtc.h')
-rw-r--r-- | include/drm/drm_crtc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index 7fbccbe8b4c6..c404b6e81220 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h @@ -37,7 +37,6 @@ #include <drm/drm_rect.h> #include <drm/drm_mode_object.h> #include <drm/drm_modes.h> -#include <drm/drm_connector.h> #include <drm/drm_device.h> #include <drm/drm_property.h> #include <drm/drm_plane.h> @@ -45,6 +44,7 @@ #include <drm/drm_debugfs_crc.h> #include <drm/drm_mode_config.h> +struct drm_connector; struct drm_device; struct drm_framebuffer; struct drm_mode_set; |