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-11 19:24:20 +0200
committerVille Syrjälä <ville.syrjala@linux.intel.com>2022-03-15 00:14:47 +0200
commit43af674357114db77cfa19be06aa48d8159610f7 (patch)
tree97fd7d06023745b00be39ccb5dd79315bf7921d7 /drivers/gpu/drm/i915/display/intel_sdvo.c
parent53f64f3a24c115bac05a7a343282623005a16c90 (diff)
downloadlinux-43af674357114db77cfa19be06aa48d8159610f7.tar.gz
linux-43af674357114db77cfa19be06aa48d8159610f7.tar.bz2
linux-43af674357114db77cfa19be06aa48d8159610f7.zip
drm/i915: Introduce intel_panel_preferred_fixed_mode()
There are a couple of cases where we essentially just want to get/check the preferred fixed mode of the panel. Add a small helper for that to abstract away the direct pointer lookup. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20220311172428.14685-9-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 04487b03b640..6e0a4f48d84d 100644
--- a/drivers/gpu/drm/i915/display/intel_sdvo.c
+++ b/drivers/gpu/drm/i915/display/intel_sdvo.c
@@ -2932,7 +2932,7 @@ intel_sdvo_lvds_init(struct intel_sdvo *intel_sdvo, int device)
}
}
- if (!intel_connector->panel.fixed_mode)
+ if (!intel_panel_preferred_fixed_mode(intel_connector))
goto err;
return true;