summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/display/intel_sdvo.c
diff options
context:
space:
mode:
authorVille Syrjälä <ville.syrjala@linux.intel.com>2022-03-31 14:28:16 +0300
committerVille Syrjälä <ville.syrjala@linux.intel.com>2022-03-31 14:28:16 +0300
commit3a3c4ce92962a42d5ee9b1db435b4b3ffa5a4fc4 (patch)
tree936118f56572d1c6f1c124e42558fbc9d1da817d /drivers/gpu/drm/i915/display/intel_sdvo.c
parent05d2d45e8736e91dfb7da28c2f51aa8e5cdc7d1f (diff)
downloadlinux-3a3c4ce92962a42d5ee9b1db435b4b3ffa5a4fc4.tar.gz
linux-3a3c4ce92962a42d5ee9b1db435b4b3ffa5a4fc4.tar.bz2
linux-3a3c4ce92962a42d5ee9b1db435b4b3ffa5a4fc4.zip
drm/i915: Combine the EDID fixed_mode+downclock_mode lookup into one
The intel_panel_add_edid_fixed_mode() vs. intel_panel_add_edid_downclock_mode() split is not really helpful. Let's just roll those into a single function so that the connector init code doesn't have to care too much about this. All we need to know is whether DRRS should be allowed or not. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20220331112822.11462-6-ville.syrjala@linux.intel.com Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Diffstat (limited to 'drivers/gpu/drm/i915/display/intel_sdvo.c')
-rw-r--r--drivers/gpu/drm/i915/display/intel_sdvo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_sdvo.c b/drivers/gpu/drm/i915/display/intel_sdvo.c
index 866e05c1a49d..ab88d8b783e6 100644
--- a/drivers/gpu/drm/i915/display/intel_sdvo.c
+++ b/drivers/gpu/drm/i915/display/intel_sdvo.c
@@ -2907,7 +2907,7 @@ intel_sdvo_lvds_init(struct intel_sdvo *intel_sdvo, int device)
if (!intel_panel_preferred_fixed_mode(intel_connector)) {
intel_ddc_get_modes(connector, &intel_sdvo->ddc);
- intel_panel_add_edid_fixed_mode(intel_connector);
+ intel_panel_add_edid_fixed_modes(intel_connector, false);
}
intel_panel_init(intel_connector);