diff options
| author | Remko Lodder <remko@FreeBSD.org> | 2008-03-21 16:38:42 +0000 |
|---|---|---|
| committer | Remko Lodder <remko@FreeBSD.org> | 2008-03-21 16:38:42 +0000 |
| commit | 5f185dbd84de2deae0a8b865871eb685693effbd (patch) | |
| tree | 45a3e01809092a1db5b435975ad3aae83421fe3f | |
| parent | e7ffdf423a838b8bd44a99ed65c98ceef30d3fda (diff) | |
Notes
| -rw-r--r-- | sys/dev/drm/drm_pciids.h | 1 | ||||
| -rw-r--r-- | sys/dev/drm/i915_dma.c | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/drm/drm_pciids.h b/sys/dev/drm/drm_pciids.h index ecc734749c2f..75f0e2dc59c8 100644 --- a/sys/dev/drm/drm_pciids.h +++ b/sys/dev/drm/drm_pciids.h @@ -294,6 +294,7 @@ {0x8086, 0x2992, 0, "Intel i965Q"}, \ {0x8086, 0x29A2, 0, "Intel i965G"}, \ {0x8086, 0x2A02, 0, "Intel i965GM"}, \ + {0x8086, 0x2A12, 0, "Intel i965GME"}, \ {0, 0, 0, NULL} #define imagine_PCI_IDS \ diff --git a/sys/dev/drm/i915_dma.c b/sys/dev/drm/i915_dma.c index 9fe278a06abb..a5e7da93b8c7 100644 --- a/sys/dev/drm/i915_dma.c +++ b/sys/dev/drm/i915_dma.c @@ -37,7 +37,8 @@ __FBSDID("$FreeBSD$"); #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 == 0x2A12 ) /* Really want an OS-independent resettable timer. Would like to have |
