From a94c96abf90c691faecbebf0c8d08f8010bc67ef Mon Sep 17 00:00:00 2001 From: Alan Hourihane Date: Wed, 16 Aug 2006 17:15:26 +0100 Subject: [PATCH] Fix bug #5150. Disable LVDS usage on i915G, i945G and i965G. --- src/i830_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)