diff options
author | Wang Zhenyu <zhenyu.z.wang@intel.com> | 2007-06-19 09:33:50 +0800 |
---|---|---|
committer | Wang Zhenyu <zhenyu.z.wang@intel.com> | 2007-06-19 09:36:35 +0800 |
commit | 3bbf313ba541526a893915f8b6c64b1eccf325e0 (patch) | |
tree | 104e310a5e6b67b7d55de7896e89e9625d9c46cd /src/i830_debug.c | |
parent | acef342c870f3b5b781e48c8bf44739aa5ee8ffa (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_debug.c')
-rw-r--r-- | src/i830_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_debug.c b/src/i830_debug.c index 93549585..bda263cd 100644 --- a/src/i830_debug.c +++ b/src/i830_debug.c @@ -224,7 +224,7 @@ DEBUGSTRING(i830_debug_dpll) break; } - if (IS_I945G(pI830) || IS_I945GM(pI830)) { + if (IS_I945G(pI830) || IS_I945GM(pI830) || IS_G33CLASS(pI830)) { sprintf(sdvoextra, ", SDVO mult %d", (int)((val & SDVO_MULTIPLIER_MASK) >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1); |