diff options
author | 2023-10-24 15:40:53 +0300 | |
---|---|---|
committer | 2023-10-26 12:14:31 +0300 | |
commit | 94232d1637c5675f19a434e5118d0d6718ee310a (patch) | |
tree | 1c1b1af2a5ef90383ec3655f6d76f2b9f3795475 /drivers/gpu/drm/i915/display/intel_panel.c | |
parent | drm/i915/display: Move lvds_channel_mode module parameter under display (diff) | |
download | wireguard-linux-94232d1637c5675f19a434e5118d0d6718ee310a.tar.xz wireguard-linux-94232d1637c5675f19a434e5118d0d6718ee310a.zip |
drm/i915/display: Move panel_use_ssc module parameter under display
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Acked-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Luca Coelho <luciano.coelho@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20231024124109.384973-8-jouni.hogander@intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/display/intel_panel.c')
-rw-r--r-- | drivers/gpu/drm/i915/display/intel_panel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_panel.c b/drivers/gpu/drm/i915/display/intel_panel.c index 483beedac5b8..0d8e5320a4f8 100644 --- a/drivers/gpu/drm/i915/display/intel_panel.c +++ b/drivers/gpu/drm/i915/display/intel_panel.c @@ -46,8 +46,8 @@ bool intel_panel_use_ssc(struct drm_i915_private *i915) { - if (i915->params.panel_use_ssc >= 0) - return i915->params.panel_use_ssc != 0; + if (i915->display.params.panel_use_ssc >= 0) + return i915->display.params.panel_use_ssc != 0; return i915->display.vbt.lvds_use_ssc && !intel_has_quirk(i915, QUIRK_LVDS_SSC_DISABLE); } |