diff options
| author | Jani Nikula <jani.nikula@intel.com> | 2025-12-15 18:28:15 +0300 |
|---|---|---|
| committer | Jani Nikula <jani.nikula@intel.com> | 2025-12-22 16:09:22 +0300 |
| commit | 0734802d6130076fe52d3c75bc618e64048c2765 (patch) | |
| tree | dd1206a8aff7b1cbd07c46f9ec5b9107c589157f | |
| parent | a61bf068f1fe359203f1af191cb523b77dc32752 (diff) | |
| download | linux-0734802d6130076fe52d3c75bc618e64048c2765.tar.xz | |
drm/i915: move display/intel_plane_initial.c to i915_initial_plane.c
intel_plane_initial.c is i915 specific. Move it to i915 core. Start
renaming stuff with the slightly more natural "initial plane" rather
than "plane initial".
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patch.msgid.link/cdad733192690a61fbb44921c57fc68cc1cd809f.1765812266.git.jani.nikula@intel.com
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
| -rw-r--r-- | drivers/gpu/drm/i915/Makefile | 2 | ||||
| -rw-r--r-- | drivers/gpu/drm/i915/i915_initial_plane.c (renamed from drivers/gpu/drm/i915/display/intel_plane_initial.c) | 17 |
2 files changed, 10 insertions, 9 deletions
diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile index 801dd155d1f0..58bb7e4fad3b 100644 --- a/drivers/gpu/drm/i915/Makefile +++ b/drivers/gpu/drm/i915/Makefile @@ -78,6 +78,7 @@ i915-$(CONFIG_PERF_EVENTS) += \ i915-y += \ i915_display_pc8.o \ i915_hdcp_gsc.o \ + i915_initial_plane.o \ i915_panic.o # "Graphics Technology" (aka we talk to the gpu) @@ -301,7 +302,6 @@ i915-y += \ display/intel_pch_display.o \ display/intel_pch_refclk.o \ display/intel_plane.o \ - display/intel_plane_initial.o \ display/intel_pmdemand.o \ display/intel_psr.o \ display/intel_quirks.o \ diff --git a/drivers/gpu/drm/i915/display/intel_plane_initial.c b/drivers/gpu/drm/i915/i915_initial_plane.c index ff1afd3a8f20..87c964485a41 100644 --- a/drivers/gpu/drm/i915/display/intel_plane_initial.c +++ b/drivers/gpu/drm/i915/i915_initial_plane.c @@ -5,17 +5,18 @@ #include <drm/drm_print.h> +#include "display/intel_crtc.h" +#include "display/intel_display.h" +#include "display/intel_display_core.h" +#include "display/intel_display_types.h" +#include "display/intel_fb.h" +#include "display/intel_frontbuffer.h" +#include "display/intel_plane.h" +#include "display/intel_plane_initial.h" #include "gem/i915_gem_lmem.h" #include "gem/i915_gem_region.h" + #include "i915_drv.h" -#include "intel_crtc.h" -#include "intel_display.h" -#include "intel_display_core.h" -#include "intel_display_types.h" -#include "intel_fb.h" -#include "intel_frontbuffer.h" -#include "intel_plane.h" -#include "intel_plane_initial.h" void intel_plane_initial_vblank_wait(struct intel_crtc *crtc) { |
