drm/i915: don't init LVDS on VLV

Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
Jesse Barnes 2013-02-02 13:56:14 +01:00 committed by Daniel Vetter
parent 8c123e549f
commit 56c2912afc

View file

@ -1023,6 +1023,9 @@ static bool intel_lvds_supported(struct drm_device *dev)
if (HAS_PCH_SPLIT(dev))
return true;
if (IS_VALLEYVIEW(dev))
return false;
/* Otherwise LVDS was only attached to mobile products,
* except for the inglorious 830gm */
return IS_MOBILE(dev) && !IS_I830(dev);