Skip to content

Commit

Permalink
drm/i915: Allow VGA on CRTC 2
Browse files Browse the repository at this point in the history
This is left over from the old PLL sharing code and isn't useful now
that PLLs are shared when possible.

Signed-off-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
  • Loading branch information
Keith Packard authored and Daniel Vetter committed Aug 17, 2012
1 parent 5233130 commit 0826874
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/i915/intel_crt.c
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ void intel_crt_init(struct drm_device *dev)
if (IS_HASWELL(dev))
crt->base.crtc_mask = (1 << 0);
else
crt->base.crtc_mask = (1 << 0) | (1 << 1);
crt->base.crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);

if (IS_GEN2(dev))
connector->interlace_allowed = 0;
Expand Down

0 comments on commit 0826874

Please sign in to comment.