diff options
author | 2021-03-18 18:10:13 +0200 | |
---|---|---|
committer | 2021-03-19 18:31:15 +0200 | |
commit | 917c28991f4114b712dc8523b4414ee51a642f4d (patch) | |
tree | b972cbc5deffbd6f695deedfb4d37b52a6a4addd /drivers/gpu/drm/i915/display/intel_pps.c | |
parent | drm/i915: Split intel_ddi_encoder_reset() from intel_dp_encoder_reset() (diff) | |
download | wireguard-linux-917c28991f4114b712dc8523b4414ee51a642f4d.tar.xz wireguard-linux-917c28991f4114b712dc8523b4414ee51a642f4d.zip |
drm/i915: Introduce g4x_dp.c
Move the g4x+ DP code into a new file. This will leave mostly
platform agnostic code in intel_dp.c. Well, the misplaced phy
test stuff pretty much ruins that, but let's squint real hard
for now.
v2: Add comment exlaining which platforms are covered (Daniel)
Leave intel_dp_unused_lane_mask() be since it is pretty generic
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210318161015.22070-6-ville.syrjala@linux.intel.com
Diffstat (limited to '')
-rw-r--r-- | drivers/gpu/drm/i915/display/intel_pps.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_pps.c b/drivers/gpu/drm/i915/display/intel_pps.c index f20ba71f4307..932f56951914 100644 --- a/drivers/gpu/drm/i915/display/intel_pps.c +++ b/drivers/gpu/drm/i915/display/intel_pps.c @@ -3,6 +3,7 @@ * Copyright © 2020 Intel Corporation */ +#include "g4x_dp.h" #include "i915_drv.h" #include "intel_display_types.h" #include "intel_dp.h" |