diff options
author | Hong Liu <hong.liu@intel.com> | 2008-06-04 16:58:05 +0800 |
---|---|---|
committer | Zhenyu Wang <zhenyu.z.wang@intel.com> | 2008-06-04 16:58:05 +0800 |
commit | beb72ae5aa053303f5cc419e9c9d7c6db964f160 (patch) | |
tree | 5f21d4fc2e979e8bd5f5512d76da93d26fcd38c7 /src/i830_sdvo.c | |
parent | c7fee208fd46e143965ea173984d284e1eec2a9b (diff) |
Set SDVO sync polarity to default on 965
Fix fd.o bug 15766
Diffstat (limited to 'src/i830_sdvo.c')
-rw-r--r-- | src/i830_sdvo.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/i830_sdvo.c b/src/i830_sdvo.c index 23791274..331059bf 100644 --- a/src/i830_sdvo.c +++ b/src/i830_sdvo.c @@ -873,7 +873,9 @@ i830_sdvo_mode_set(xf86OutputPtr output, DisplayModePtr mode, /* Set the SDVO control regs. */ if (IS_I965G(pI830)) { - sdvox = SDVO_BORDER_ENABLE; + sdvox = SDVO_BORDER_ENABLE | + SDVO_VSYNC_ACTIVE_HIGH | + SDVO_HSYNC_ACTIVE_HIGH; } else { sdvox = INREG(dev_priv->output_device); switch (dev_priv->output_device) { |