diff options
| author | Jani Nikula <jani.nikula@intel.com> | 2026-02-25 17:49:07 +0300 |
|---|---|---|
| committer | Jani Nikula <jani.nikula@intel.com> | 2026-02-27 00:28:57 +0300 |
| commit | dc88f63aeada8eea011af15b8fab4b61bf334e93 (patch) | |
| tree | b8bcdb9aedd91d7fb790db43d7ed57fdeb5da7cd | |
| parent | 230f8c9956c0069c509bf75bac6bf1a4f7b26dd8 (diff) | |
| download | linux-dc88f63aeada8eea011af15b8fab4b61bf334e93.tar.xz | |
drm/i915/dpt: move display/intel_dpt.c to i915_dpt.c
The DPT implementation is i915 specific. The xe driver has a different
implementation. Move display/intel_dpt.c to i915_dpt.c. Cleanups will
follow.
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Link: https://patch.msgid.link/20a3bfb2762f39f9666d9a5752b8d2fb133583b0.1772030909.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_dpt.c (renamed from drivers/gpu/drm/i915/display/intel_dpt.c) | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile index 4d6c528d9881..f1f504b36374 100644 --- a/drivers/gpu/drm/i915/Makefile +++ b/drivers/gpu/drm/i915/Makefile @@ -77,6 +77,7 @@ i915-$(CONFIG_PERF_EVENTS) += \ # core display adaptation i915-y += \ i915_display_pc8.o \ + i915_dpt.o \ i915_dsb_buffer.o \ i915_hdcp_gsc.o \ i915_initial_plane.o \ @@ -270,7 +271,6 @@ i915-y += \ display/intel_dpio_phy.o \ display/intel_dpll.o \ display/intel_dpll_mgr.o \ - display/intel_dpt.o \ display/intel_dpt_common.o \ display/intel_dram.o \ display/intel_drrs.o \ diff --git a/drivers/gpu/drm/i915/display/intel_dpt.c b/drivers/gpu/drm/i915/i915_dpt.c index da472371c7d7..3f764727025c 100644 --- a/drivers/gpu/drm/i915/display/intel_dpt.c +++ b/drivers/gpu/drm/i915/i915_dpt.c @@ -5,17 +5,17 @@ #include <drm/drm_print.h> +#include "display/intel_display_core.h" +#include "display/intel_display_rpm.h" +#include "display/intel_display_types.h" +#include "display/intel_dpt.h" +#include "display/intel_fb.h" #include "gem/i915_gem_domain.h" #include "gem/i915_gem_internal.h" #include "gem/i915_gem_lmem.h" #include "gt/gen8_ppgtt.h" #include "i915_drv.h" -#include "intel_display_core.h" -#include "intel_display_rpm.h" -#include "intel_display_types.h" -#include "intel_dpt.h" -#include "intel_fb.h" struct i915_dpt { struct i915_address_space vm; |
