diff options
author | Jani Nikula <jani.nikula@intel.com> | 2021-10-13 12:11:59 +0200 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2021-10-14 11:22:55 +0200 |
commit | 1eecf31e3c962aabc1e9c5a469cfa2d161e5254d (patch) | |
tree | f5785d082306703f18e55ac3c34e5da650e4869f /drivers/gpu/drm/i915/display/vlv_dsi.c | |
parent | drm/i915/display: remove unused intel-mid.h include (diff) | |
download | linux-1eecf31e3c962aabc1e9c5a469cfa2d161e5254d.tar.xz linux-1eecf31e3c962aabc1e9c5a469cfa2d161e5254d.zip |
drm/i915: split out vlv sideband to a separate file
The VLV/CHV sideband code is pretty distinct from the rest of the
sideband code. Split it out to new vlv_sideband.[ch].
Pure code movement with relevant #include changes, and a tiny checkpatch
fix on top.
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/755ebbbaf01fc6d306b763b6ef60f45e671ba290.1634119597.git.jani.nikula@intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/display/vlv_dsi.c')
-rw-r--r-- | drivers/gpu/drm/i915/display/vlv_dsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/display/vlv_dsi.c b/drivers/gpu/drm/i915/display/vlv_dsi.c index 081b772bfe10..07584695514b 100644 --- a/drivers/gpu/drm/i915/display/vlv_dsi.c +++ b/drivers/gpu/drm/i915/display/vlv_dsi.c @@ -40,8 +40,8 @@ #include "intel_dsi.h" #include "intel_fifo_underrun.h" #include "intel_panel.h" -#include "intel_sideband.h" #include "skl_scaler.h" +#include "vlv_sideband.h" /* return pixels in terms of txbyteclkhs */ static u16 txbyteclkhs(u16 pixels, int bpp, int lane_count, |