diff options
author | Zhenyu Wang <zhenyu.z.wang@intel.com> | 2008-09-11 16:14:47 +0800 |
---|---|---|
committer | Zhenyu Wang <zhenyu.z.wang@intel.com> | 2008-09-11 16:14:47 +0800 |
commit | ec17c88a0ed7c9cf4ad68aa52a7a891946a1c0f4 (patch) | |
tree | d3506aa6674b150aa114ed3416567c0f94fab9ba /src/i830_driver.c | |
parent | f9c625e1e5ddfff06b38fdd4e596fd8eae5934d5 (diff) |
Add support for G41 chipset
G41 is another 4 series chipset like G45/43.
Diffstat (limited to 'src/i830_driver.c')
-rw-r--r-- | src/i830_driver.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/i830_driver.c b/src/i830_driver.c index bab86a54..e48e20ec 100644 --- a/src/i830_driver.c +++ b/src/i830_driver.c @@ -254,6 +254,7 @@ static SymTabRec I830Chipsets[] = { {PCI_CHIP_IGD_E_G, "Intel Integrated Graphics Device"}, {PCI_CHIP_G45_G, "G45/G43"}, {PCI_CHIP_Q45_G, "Q45/Q43"}, + {PCI_CHIP_G41_G, "G41"}, {-1, NULL} }; @@ -281,6 +282,7 @@ static PciChipsets I830PciChipsets[] = { {PCI_CHIP_IGD_E_G, PCI_CHIP_IGD_E_G, RES_SHARED_VGA}, {PCI_CHIP_G45_G, PCI_CHIP_G45_G, RES_SHARED_VGA}, {PCI_CHIP_Q45_G, PCI_CHIP_Q45_G, RES_SHARED_VGA}, + {PCI_CHIP_G41_G, PCI_CHIP_G41_G, RES_SHARED_VGA}, {-1, -1, RES_UNDEFINED} }; @@ -1267,6 +1269,9 @@ i830_detect_chipset(ScrnInfoPtr pScrn) case PCI_CHIP_Q45_G: chipname = "Q45/Q43"; break; + case PCI_CHIP_G41_G: + chipname = "G41"; + break; default: chipname = "unknown chipset"; break; |