xf86-video-intel: Branch 'modesetting' - src/i830_driver.c

Adam Jackson ajax at kemper.freedesktop.org
Sat Oct 7 18:21:58 EEST 2006


 src/i830_driver.c |    3 +--
 1 files changed, 1 insertion(+), 2 deletions(-)

New commits:
diff-tree 53c28b3980d2682de830e8f86553ccad71527ac1 (from d649fb0d964a9b40b8e04314b5fc14bbbfd41bc3)
Author: Adam Jackson <ajax at benzedrine.nwnk.net>
Date:   Sat Oct 7 11:18:26 2006 -0400

    Expand the check for AOpen Mini-PC.
    
    Just match on subsystem vendor, don't bother inspecting the subsystem device
    ID, since apparently they're all busted.

diff --git a/src/i830_driver.c b/src/i830_driver.c
index 07a9d59..a69b5c6 100644
--- a/src/i830_driver.c
+++ b/src/i830_driver.c
@@ -1577,8 +1577,7 @@ I830PreInit(ScrnInfoPtr pScrn, int flags
 
    /* Blacklist machines with known broken BIOSes */
    if (pI830->PciInfo->chipType == PCI_CHIP_I945_GM) {
-	if ((pI830->PciInfo->subsysVendor == 0xa0a0) &&
-	    (pI830->PciInfo->subsysCard == 0x0589))  /* aopen mini pc */
+	if (pI830->PciInfo->subsysVendor == 0xa0a0)  /* aopen mini pc */
 	    has_lvds = FALSE;
 
 	if ((pI830->PciInfo->subsysVendor == 0x8086) &&



More information about the xorg-commit mailing list