summaryrefslogtreecommitdiff
path: root/src/i830_driver.c
diff options
context:
space:
mode:
authorZhenyu Wang <zhenyuw@linux.intel.com>2009-09-08 00:56:34 +0800
committerZhenyu Wang <zhenyuw@linux.intel.com>2009-09-08 00:56:34 +0800
commitce10b5b6fca086eb4af45c1db28352e06ee4ce0b (patch)
treef3cc511b0875bd5648cfdcc01e1f2f0e8e93136d /src/i830_driver.c
parent94fc93d4e2b88565dca17f72903d8991213c9ee8 (diff)
Add B43 chipset support
Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
Diffstat (limited to 'src/i830_driver.c')
-rw-r--r--src/i830_driver.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/i830_driver.c b/src/i830_driver.c
index 4334de62..e3e1ed20 100644
--- a/src/i830_driver.c
+++ b/src/i830_driver.c
@@ -116,6 +116,7 @@ static SymTabRec I830Chipsets[] = {
{PCI_CHIP_G45_G, "G45/G43"},
{PCI_CHIP_Q45_G, "Q45/Q43"},
{PCI_CHIP_G41_G, "G41"},
+ {PCI_CHIP_B43_G, "B43"},
{PCI_CHIP_IGDNG_D_G, "Clarkdale"},
{PCI_CHIP_IGDNG_M_G, "Arrandale"},
{-1, NULL}
@@ -148,6 +149,7 @@ static PciChipsets I830PciChipsets[] = {
{PCI_CHIP_G45_G, PCI_CHIP_G45_G, NULL},
{PCI_CHIP_Q45_G, PCI_CHIP_Q45_G, NULL},
{PCI_CHIP_G41_G, PCI_CHIP_G41_G, NULL},
+ {PCI_CHIP_B43_G, PCI_CHIP_B43_G, NULL},
{PCI_CHIP_IGDNG_D_G, PCI_CHIP_IGDNG_D_G, NULL},
{PCI_CHIP_IGDNG_M_G, PCI_CHIP_IGDNG_M_G, NULL},
{-1, -1, NULL}
@@ -1096,6 +1098,9 @@ i830_detect_chipset(ScrnInfoPtr pScrn)
case PCI_CHIP_G41_G:
chipname = "G41";
break;
+ case PCI_CHIP_B43_G:
+ chipname = "B43";
+ break;
case PCI_CHIP_IGDNG_D_G:
chipname = "Clarkdale";
break;