summaryrefslogtreecommitdiff
authorliuhong <liuhong@devlinux-hong.sh.intel.com>2008-02-05 03:04:34 (GMT)
committer Jesse Barnes <jbarnes@hobbes.virtuousgeek.org>2008-02-05 21:06:58 (GMT)
commitf79a585d57c61fbe9af5684a336918e1fe3e8416 (patch)
treefffffe8a26310a839b78d324d6f6808211f515cc
parentcabed67b6a0e4dd408eeb8d2083269100a65933c (diff)
downloadxf86-video-intel-f79a585d57c61fbe9af5684a336918e1fe3e8416.zip
xf86-video-intel-f79a585d57c61fbe9af5684a336918e1fe3e8416.tar.gz
xf86-video-intel-f79a585d57c61fbe9af5684a336918e1fe3e8416.tar.bz2
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 e6ff6af..e7342b0 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
},