From 296653a55206f9394a161f7d7ed59835e1866382 Mon Sep 17 00:00:00 2001 From: "Xiang, Haihao" Date: Wed, 7 Dec 2011 08:43:29 +0800 Subject: [PATCH] Add support for B43 chipset B43 is another 4 series chipset like G41/G45 Signed-off-by: Alexander Inyukhin Signed-off-by: Xiang, Haihao --- src/intel_driver.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/intel_driver.h b/src/intel_driver.h index e31360d..5ba80bd 100644 --- a/src/intel_driver.h +++ b/src/intel_driver.h @@ -138,6 +138,8 @@ struct intel_region #define PCI_CHIP_Q45_G 0x2E12 #define PCI_CHIP_G45_G 0x2E22 #define PCI_CHIP_G41_G 0x2E32 +#define PCI_CHIP_B43_G 0x2E42 +#define PCI_CHIP_B43_G1 0x2E92 #define PCI_CHIP_IRONLAKE_D_G 0x0042 #define PCI_CHIP_IRONLAKE_M_G 0x0046 @@ -161,7 +163,10 @@ struct intel_region #define IS_G45(devid) (devid == PCI_CHIP_IGD_E_G || \ devid == PCI_CHIP_Q45_G || \ devid == PCI_CHIP_G45_G || \ - devid == PCI_CHIP_G41_G) + devid == PCI_CHIP_G41_G || \ + devid == PCI_CHIP_B43_G || \ + devid == PCI_CHIP_B43_G1) + #define IS_GM45(devid) (devid == PCI_CHIP_GM45_GM) #define IS_G4X(devid) (IS_G45(devid) || IS_GM45(devid)) -- 2.7.4