diff options
-rw-r--r-- | src/i830_quirks.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/i830_quirks.c b/src/i830_quirks.c index aaff753d..72e735ba 100644 --- a/src/i830_quirks.c +++ b/src/i830_quirks.c @@ -235,6 +235,8 @@ static i830_quirk i830_quirk_list[] = { { PCI_CHIP_I965_GM, 0x1028, 0x0254, quirk_ignore_tv }, /* Dell Inspiron 1735 */ { PCI_CHIP_I965_GM, 0x1028, 0x0256, quirk_ignore_tv }, + /* Dell Inspiron 1318 */ + { PCI_CHIP_I965_GM, 0x1028, 0x0286, quirk_ignore_tv }, /* Lenovo Napa TV (use dmi)*/ { PCI_CHIP_I945_GM, 0x17aa, SUBSYS_ANY, quirk_lenovo_tv_dmi }, @@ -264,9 +266,6 @@ static i830_quirk i830_quirk_list[] = { /* HP Compaq 6730s has no TV output */ { PCI_CHIP_IGD_GM, 0x103c, 0x30e8, quirk_ignore_tv }, - /* Dell Inspiron 510m needs pipe A force quirk */ - { PCI_CHIP_I855_GM, 0x1028, 0x0164, quirk_pipea_force }, - /* Thinkpad R31 needs pipe A force quirk */ { PCI_CHIP_I830_M, 0x1014, 0x0505, quirk_pipea_force }, /* Dell Latitude D500 needs pipe A force quirk */ @@ -277,19 +276,26 @@ static i830_quirk i830_quirk_list[] = { { PCI_CHIP_I855_GM, 0x1028, 0x0164, quirk_pipea_force }, /* Toshiba Protege R-205, S-209 needs pipe A force quirk */ { PCI_CHIP_I915_GM, 0x1179, 0x0001, quirk_pipea_force }, + /* Intel 855GM hardware (See LP: #216490) */ + { PCI_CHIP_I855_GM, 0x1028, 0x00c8, quirk_pipea_force }, /* ThinkPad X40 needs pipe A force quirk */ { PCI_CHIP_I855_GM, 0x1014, 0x0557, quirk_pipea_force }, /* Sony vaio PCG-r600HFP (fix bug 13722) */ { PCI_CHIP_I830_M, 0x104d, 0x8100, quirk_ivch_dvob }, + /* Sony vaio VGN-SZ4MN (See LP: #212163) */ + { PCI_CHIP_I830_M, 0x104d, 0x81e6, quirk_pipea_force }, - /* Intel 945GM hardware (See LP: #152416) */ + /* Ordi Enduro UW31 (See LP: #152416) */ { PCI_CHIP_I945_GM, 0x1584, 0x9900, quirk_ignore_tv }, /* Dell Latitude D500 needs reset modes quirk */ { PCI_CHIP_I855_GM, 0x1028, 0x0152, quirk_reset_modes }, + /* Littlebit Sepia X35 (rebranded Asus Z37E) (See LP: #201257) */ + { PCI_CHIP_I965_GM, 0x1043, 0x8265, quirk_ignore_tv }, + { 0, 0, 0, NULL }, }; |