diff options
author | Adam Jackson <ajax@benzedrine.nwnk.net> | 2006-10-07 11:18:26 -0400 |
---|---|---|
committer | Adam Jackson <ajax@benzedrine.nwnk.net> | 2006-10-07 11:18:26 -0400 |
commit | 53c28b3980d2682de830e8f86553ccad71527ac1 (patch) | |
tree | 2652491b0cfc880daa43ca0901ce0558f436d332 /src/i830_driver.c | |
parent | d649fb0d964a9b40b8e04314b5fc14bbbfd41bc3 (diff) |
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.
Diffstat (limited to 'src/i830_driver.c')
-rw-r--r-- | src/i830_driver.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/i830_driver.c b/src/i830_driver.c index 07a9d59b..a69b5c6a 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) && |