mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-27 14:00:15 +01:00
i915: Add 965GM pci id update
This commit is contained in:
parent
2a2d726233
commit
80095ffe01
2 changed files with 3 additions and 1 deletions
|
|
@ -278,6 +278,7 @@
|
|||
0x8086 0x2982 CHIP_I9XX|CHIP_I965 "Intel i965G"
|
||||
0x8086 0x2992 CHIP_I9XX|CHIP_I965 "Intel i965Q"
|
||||
0x8086 0x29A2 CHIP_I9XX|CHIP_I965 "Intel i965G"
|
||||
0x8086 0x2A02 CHIP_I9XX|CHIP_I965 "Intel i965GM"
|
||||
|
||||
[imagine]
|
||||
0x105d 0x2309 IMAGINE_128 "Imagine 128"
|
||||
|
|
|
|||
|
|
@ -34,7 +34,8 @@
|
|||
#define IS_I965G(dev) (dev->pci_device == 0x2972 || \
|
||||
dev->pci_device == 0x2982 || \
|
||||
dev->pci_device == 0x2992 || \
|
||||
dev->pci_device == 0x29A2)
|
||||
dev->pci_device == 0x29A2 || \
|
||||
dev->pci_device == 0x2A02)
|
||||
|
||||
|
||||
/* Really want an OS-independent resettable timer. Would like to have
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue