diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-09-16 16:50:13 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2010-09-16 16:51:59 +0100 |
commit | 55b5fe888002258dd863d41977bfbfcf1a922179 (patch) | |
tree | f4b3b038708cc38be69ba6da5e8741634dabd6a3 /src | |
parent | 08c2caca48323d6d5701dcef3486f850619d7905 (diff) |
Add alternate pci-id for B43
Confirmed by http://en.wikipedia.org/wiki/Intel_GMA
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=30221
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src')
-rw-r--r-- | src/intel_driver.h | 5 | ||||
-rw-r--r-- | src/intel_module.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/intel_driver.h b/src/intel_driver.h index 50f176ad..b55c8c96 100644 --- a/src/intel_driver.h +++ b/src/intel_driver.h @@ -158,6 +158,11 @@ #define PCI_CHIP_B43_G_BRIDGE 0x2E40 #endif +#ifndef PCI_CHIP_B43_G1 +#define PCI_CHIP_B43_G1 0x2E92 +#define PCI_CHIP_B43_G1_BRIDGE 0x2E90 +#endif + #ifndef PCI_CHIP_IGDNG_D_G #define PCI_CHIP_IGDNG_D_G 0x0042 #define PCI_CHIP_IGDNG_D_G_BRIDGE 0x0040 diff --git a/src/intel_module.c b/src/intel_module.c index d37896e2..53e1cb62 100644 --- a/src/intel_module.c +++ b/src/intel_module.c @@ -70,6 +70,7 @@ static const SymTabRec _intel_chipsets[] = { {PCI_CHIP_Q45_G, "Q45/Q43"}, {PCI_CHIP_G41_G, "G41"}, {PCI_CHIP_B43_G, "B43"}, + {PCI_CHIP_B43_G1, "B43"}, {PCI_CHIP_IGDNG_D_G, "Clarkdale"}, {PCI_CHIP_IGDNG_M_G, "Arrandale"}, {PCI_CHIP_SANDYBRIDGE_GT1, "Sandybridge" }, |