Skip to content

Commit

Permalink
drm/i915: Disable VGA output when doing DRM_MODE_DPMS_OFF.
Browse files Browse the repository at this point in the history
Signed-off-by: Ma Ling <ling.ma@intel.com>
Signed-off-by: Eric Anholt <eric@anholt.net>
  • Loading branch information
ling.ma@intel.com authored and Eric Anholt committed Jul 7, 2009
1 parent 8e4d36b commit febc769
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 @@ -46,7 +46,7 @@ static void intel_crt_dpms(struct drm_encoder *encoder, int mode)

temp = I915_READ(reg);
temp &= ~(ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE);
temp |= ADPA_DAC_ENABLE;
temp &= ~ADPA_DAC_ENABLE;

switch(mode) {
case DRM_MODE_DPMS_ON:
Expand Down

0 comments on commit febc769

Please sign in to comment.