diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2008-07-08 09:57:04 -0400 |
---|---|---|
committer | Brice Goglin <bgoglin@debian.org> | 2008-08-02 18:47:29 +0200 |
commit | ab2bdcf5776834148f03c9f60da45489d589dd8a (patch) | |
tree | faa1e5491c03b6fa4ae9f4810d289c53569e5e26 | |
parent | 03a90686bfa244ac5fe59813dbef46463fe2b7f7 (diff) | |
download | xf86-video-ati-frc-ab2bdcf5776834148f03c9f60da45489d589dd8a.tar.gz xf86-video-ati-frc-ab2bdcf5776834148f03c9f60da45489d589dd8a.tar.bz2 |
Add quirk for Falcon NW laptop
(cherry picked from commit 9086d008fb8c3cde0633b90ce19ffbf4eded388d)
-rw-r--r-- | src/radeon_atombios.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/radeon_atombios.c b/src/radeon_atombios.c index be0849d..9d2a84f 100644 --- a/src/radeon_atombios.c +++ b/src/radeon_atombios.c @@ -1751,6 +1751,15 @@ static void RADEONApplyATOMQuirks(ScrnInfoPtr pScrn, int index) } } + /* Falcon NW laptop lists vga ddc line for LVDS */ + if ((info->Chipset == PCI_CHIP_RV410_5653) && + (PCI_SUB_VENDOR_ID(info->PciInfo) == 0x1462) && + (PCI_SUB_DEVICE_ID(info->PciInfo) == 0x0291)) { + if (info->BiosConnector[index].ConnectorType == CONNECTOR_LVDS) { + info->BiosConnector[index].ddc_i2c.valid = FALSE; + } + } + } Bool |