diff options
author | Alan Hourihane <alanh@fairlite.demon.co.uk> | 2006-08-16 17:15:26 +0100 |
---|---|---|
committer | Alan Hourihane <alanh@fairlite.demon.co.uk> | 2006-08-16 17:15:26 +0100 |
commit | a94c96abf90c691faecbebf0c8d08f8010bc67ef (patch) | |
tree | dee1d7eb11e7c297aaf0071bbeb7b4f63a4733b5 /src/i830_driver.c | |
parent | 2a4e486d2990af433e915cfa26dc57cae02e01b7 (diff) |
Fix bug #5150. Disable LVDS usage on i915G, i945G and i965G.
Diffstat (limited to 'src/i830_driver.c')
-rw-r--r-- | src/i830_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_driver.c b/src/i830_driver.c index 5d5fb721..21adbaf0 100644 --- a/src/i830_driver.c +++ b/src/i830_driver.c @@ -2709,7 +2709,7 @@ SetDisplayDevices(ScrnInfoPtr pScrn, int devices) } /* LVDS doesn't exist on these */ - if (IS_I830(pI830) || IS_845G(pI830) || IS_I865G(pI830)) + if (IS_I830(pI830) || IS_845G(pI830) || IS_I865G(pI830) || IS_I915G(pI830) || IS_I945G(pI830) || IS_I965G(pI830)) singlepipe &= ~(PIPE_LFP | (PIPE_LFP<<8)); if (pI830->availablePipes == 1) |