summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/display/intel_panel.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_panel.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_panel.c')
-rw-r--r--drivers/gpu/drm/i915/display/intel_panel.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_panel.c b/drivers/gpu/drm/i915/display/intel_panel.c
index 222328d4e7a1..3ca37766ccb3 100644
--- a/drivers/gpu/drm/i915/display/intel_panel.c
+++ b/drivers/gpu/drm/i915/display/intel_panel.c
@@ -46,6 +46,12 @@ bool intel_panel_use_ssc(struct drm_i915_private *i915)
}
const struct drm_display_mode *
+intel_panel_preferred_fixed_mode(struct intel_connector *connector)
+{
+ return connector->panel.fixed_mode;
+}
+
+const struct drm_display_mode *
intel_panel_fixed_mode(struct intel_connector *connector,
const struct drm_display_mode *mode)
{