diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-09-24 13:24:28 +0400 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2010-09-24 17:22:11 +0400 |
commit | 5ceb0f9bb7bde101d8b07cb803002591dcb8c804 (patch) | |
tree | 018ff025a3f5de220ead3b53254c397825be1de3 /drivers/gpu/drm/i915/intel_lvds.c | |
parent | 270eea0fd71ae95654606ff7448f195fa22d12c5 (diff) | |
download | linux-5ceb0f9bb7bde101d8b07cb803002591dcb8c804.tar.xz |
drm/i915: Parse the eDP link configuration from the vBIOS
First step, lets have a look at the values for troublesome panels and
see if they may be used to improve our link training.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'drivers/gpu/drm/i915/intel_lvds.c')
-rw-r--r-- | drivers/gpu/drm/i915/intel_lvds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_lvds.c b/drivers/gpu/drm/i915/intel_lvds.c index 95e035a6009e..98172bcf485f 100644 --- a/drivers/gpu/drm/i915/intel_lvds.c +++ b/drivers/gpu/drm/i915/intel_lvds.c @@ -864,7 +864,7 @@ void intel_lvds_init(struct drm_device *dev) if (HAS_PCH_SPLIT(dev)) { if ((I915_READ(PCH_LVDS) & LVDS_DETECTED) == 0) return; - if (dev_priv->edp_support) { + if (dev_priv->edp.support) { DRM_DEBUG_KMS("disable LVDS for eDP support\n"); return; } |