summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorliuhong <liuhong@devlinux-hong.sh.intel.com>2008-02-05 11:04:34 +0800
committerJesse Barnes <jbarnes@hobbes.virtuousgeek.org>2008-02-05 13:12:17 -0800
commite9cb38e25619aa8eb1b7faac5fa3749e4e993997 (patch)
tree2ac312dc5b6e138ea2af0730fde09f452e87ec2f
parent02d12583e313898a5f14ff968ac4360bce3eff3d (diff)
downloadxorg-driver-xf86-video-intel-e9cb38e25619aa8eb1b7faac5fa3749e4e993997.tar.gz
xf86-video-intel: fix ivch using wrong dvo register
We use the wrong DVO output register for ivch which is used for DVO LVDS. Vbios enables DVOB and driver never touches it, so everything seems working correctly now.
-rw-r--r--src/i830_dvo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_dvo.c b/src/i830_dvo.c
index e6ff6af6..e7342b08 100644
--- a/src/i830_dvo.c
+++ b/src/i830_dvo.c
@@ -83,7 +83,7 @@ struct _I830DVODriver i830_dvo_drivers[] =
.type = I830_OUTPUT_DVO_LVDS,
.modulename = "ivch",
.fntablename = "ivch_methods",
- .dvo_reg = DVOA,
+ .dvo_reg = DVOB,
.address = 0x04, /* Might also be 0x44, 0x84, 0xc4 */
.symbols = ivch_symbols
},