summaryrefslogtreecommitdiff
path: root/src/i830_crt.c
diff options
context:
space:
mode:
authorWang Zhenyu <zhenyu.z.wang@intel.com>2007-06-19 09:33:50 +0800
committerWang Zhenyu <zhenyu.z.wang@intel.com>2007-06-19 09:36:35 +0800
commit3bbf313ba541526a893915f8b6c64b1eccf325e0 (patch)
tree104e310a5e6b67b7d55de7896e89e9625d9c46cd /src/i830_crt.c
parentacef342c870f3b5b781e48c8bf44739aa5ee8ffa (diff)
Fix left G33 issues
Be sure to check G33 chip type in: - sdvo output - Y-major tile - crt detect - and xaa composite Sorry for that I should have fixed them very earlier...
Diffstat (limited to 'src/i830_crt.c')
-rw-r--r--src/i830_crt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/i830_crt.c b/src/i830_crt.c
index bbb4a830..d9f4ee60 100644
--- a/src/i830_crt.c
+++ b/src/i830_crt.c
@@ -310,7 +310,8 @@ i830_crt_detect(xf86OutputPtr output)
I830Ptr pI830 = I830PTR(pScrn);
xf86CrtcPtr crtc;
- if (IS_I945G(pI830) || IS_I945GM(pI830) || IS_I965G(pI830)) {
+ if (IS_I945G(pI830) || IS_I945GM(pI830) || IS_I965G(pI830) ||
+ IS_G33CLASS(pI830)) {
if (i830_crt_detect_hotplug(output))
return XF86OutputStatusConnected;
else