Skip to content

Commit

Permalink
drm/i915: use VBT to determine whether to enumerate the VGA port
Browse files Browse the repository at this point in the history
Some platforms may not have it, and enumerating it is both confusing and
time consuming due to the hotplug and DDC probing.

Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Reviewed-by: Ben Widawsky <ben@bwidawsk.net>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
  • Loading branch information
Jesse Barnes authored and Daniel Vetter committed Jun 5, 2014
1 parent de8f0a5 commit 27da3bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/i915/intel_display.c
Original file line number Diff line number Diff line change
Expand Up @@ -11106,7 +11106,7 @@ static void intel_setup_outputs(struct drm_device *dev)

intel_lvds_init(dev);

if (!IS_ULT(dev) && !IS_CHERRYVIEW(dev))
if (!IS_ULT(dev) && !IS_CHERRYVIEW(dev) && dev_priv->vbt.int_crt_support)
intel_crt_init(dev);

if (HAS_DDI(dev)) {
Expand Down

0 comments on commit 27da3bd

Please sign in to comment.