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_sdvo.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_sdvo.c')
-rw-r--r-- | src/i830_sdvo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_sdvo.c b/src/i830_sdvo.c index 3916dba8..27677152 100644 --- a/src/i830_sdvo.c +++ b/src/i830_sdvo.c @@ -747,7 +747,7 @@ i830_sdvo_mode_set(xf86OutputPtr output, DisplayModePtr mode, sdvo_pixel_multiply = i830_sdvo_get_pixel_multiplier(mode); if (IS_I965G(pI830)) { /* done in crtc_mode_set as the dpll_md reg must be written early */ - } else if (IS_I945G(pI830) || IS_I945GM(pI830)) { + } else if (IS_I945G(pI830) || IS_I945GM(pI830) || IS_G33CLASS(pI830)) { /* done in crtc_mode_set as it lives inside the dpll register */ } else { sdvox |= (sdvo_pixel_multiply - 1) << SDVO_PORT_MULTIPLY_SHIFT; |