Commit 34957e8c authored by Jani Nikula's avatar Jani Nikula

drm/i915/bios: reduce indent in parse_general_features

Slightly cleaner with early exit.
Reviewed-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: default avatarJani Nikula <jani.nikula@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1450271061-32646-4-git-send-email-jani.nikula@intel.com
parent 98f3a1dc
...@@ -353,25 +353,26 @@ parse_general_features(struct drm_i915_private *dev_priv, ...@@ -353,25 +353,26 @@ parse_general_features(struct drm_i915_private *dev_priv,
const struct bdb_general_features *general; const struct bdb_general_features *general;
general = find_section(bdb, BDB_GENERAL_FEATURES); general = find_section(bdb, BDB_GENERAL_FEATURES);
if (general) { if (!general)
dev_priv->vbt.int_tv_support = general->int_tv_support; return;
/* int_crt_support can't be trusted on earlier platforms */
if (bdb->version >= 155 && dev_priv->vbt.int_tv_support = general->int_tv_support;
(HAS_DDI(dev_priv) || IS_VALLEYVIEW(dev_priv))) /* int_crt_support can't be trusted on earlier platforms */
dev_priv->vbt.int_crt_support = general->int_crt_support; if (bdb->version >= 155 &&
dev_priv->vbt.lvds_use_ssc = general->enable_ssc; (HAS_DDI(dev_priv) || IS_VALLEYVIEW(dev_priv)))
dev_priv->vbt.lvds_ssc_freq = dev_priv->vbt.int_crt_support = general->int_crt_support;
intel_bios_ssc_frequency(dev_priv, general->ssc_freq); dev_priv->vbt.lvds_use_ssc = general->enable_ssc;
dev_priv->vbt.display_clock_mode = general->display_clock_mode; dev_priv->vbt.lvds_ssc_freq =
dev_priv->vbt.fdi_rx_polarity_inverted = general->fdi_rx_polarity_inverted; intel_bios_ssc_frequency(dev_priv, general->ssc_freq);
DRM_DEBUG_KMS("BDB_GENERAL_FEATURES int_tv_support %d int_crt_support %d lvds_use_ssc %d lvds_ssc_freq %d display_clock_mode %d fdi_rx_polarity_inverted %d\n", dev_priv->vbt.display_clock_mode = general->display_clock_mode;
dev_priv->vbt.int_tv_support, dev_priv->vbt.fdi_rx_polarity_inverted = general->fdi_rx_polarity_inverted;
dev_priv->vbt.int_crt_support, DRM_DEBUG_KMS("BDB_GENERAL_FEATURES int_tv_support %d int_crt_support %d lvds_use_ssc %d lvds_ssc_freq %d display_clock_mode %d fdi_rx_polarity_inverted %d\n",
dev_priv->vbt.lvds_use_ssc, dev_priv->vbt.int_tv_support,
dev_priv->vbt.lvds_ssc_freq, dev_priv->vbt.int_crt_support,
dev_priv->vbt.display_clock_mode, dev_priv->vbt.lvds_use_ssc,
dev_priv->vbt.fdi_rx_polarity_inverted); dev_priv->vbt.lvds_ssc_freq,
} dev_priv->vbt.display_clock_mode,
dev_priv->vbt.fdi_rx_polarity_inverted);
} }
static void static void
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment