Commit 56c2912a authored by Jesse Barnes's avatar Jesse Barnes Committed by Daniel Vetter

drm/i915: don't init LVDS on VLV

Signed-off-by: default avatarJesse Barnes <jbarnes@virtuousgeek.org>
Reviewed-by: default avatarJani Nikula <jani.nikula@intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 8c123e54
...@@ -1023,6 +1023,9 @@ static bool intel_lvds_supported(struct drm_device *dev) ...@@ -1023,6 +1023,9 @@ static bool intel_lvds_supported(struct drm_device *dev)
if (HAS_PCH_SPLIT(dev)) if (HAS_PCH_SPLIT(dev))
return true; return true;
if (IS_VALLEYVIEW(dev))
return false;
/* Otherwise LVDS was only attached to mobile products, /* Otherwise LVDS was only attached to mobile products,
* except for the inglorious 830gm */ * except for the inglorious 830gm */
return IS_MOBILE(dev) && !IS_I830(dev); return IS_MOBILE(dev) && !IS_I830(dev);
......
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