mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 18:00:10 +01:00
intel: Add a new B43 pci id.
Signed-off-by: Robert Hooker <robert.hooker@canonical.com>
This commit is contained in:
parent
9effc1adf1
commit
e8b2d36723
2 changed files with 4 additions and 1 deletions
|
|
@ -67,6 +67,7 @@
|
|||
#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_ILD_G 0x0042
|
||||
#define PCI_CHIP_ILM_G 0x0046
|
||||
|
|
@ -93,7 +94,8 @@
|
|||
devid == PCI_CHIP_Q45_G || \
|
||||
devid == PCI_CHIP_G45_G || \
|
||||
devid == PCI_CHIP_G41_G || \
|
||||
devid == PCI_CHIP_B43_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))
|
||||
|
||||
|
|
|
|||
|
|
@ -155,6 +155,7 @@ intelGetString(struct gl_context * ctx, GLenum name)
|
|||
chipset = "Intel(R) G41";
|
||||
break;
|
||||
case PCI_CHIP_B43_G:
|
||||
case PCI_CHIP_B43_G1:
|
||||
chipset = "Intel(R) B43";
|
||||
break;
|
||||
case PCI_CHIP_ILD_G:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue