summaryrefslogtreecommitdiffstats
path: root/sys/dev/drm/i915_drv.h
diff options
context:
space:
mode:
authorrnoland <rnoland@FreeBSD.org>2009-10-11 01:54:00 +0000
committerrnoland <rnoland@FreeBSD.org>2009-10-11 01:54:00 +0000
commitc98bb6fb8fe1b6c9437608e3d30fd1cbf47e2e6a (patch)
treed6e34ab6a62f30ad1ddb857d50061b6c168e4966 /sys/dev/drm/i915_drv.h
parentb0b4dc5054e64bca046bc1d01e8f92e8c82ab7a8 (diff)
downloadFreeBSD-src-c98bb6fb8fe1b6c9437608e3d30fd1cbf47e2e6a.zip
FreeBSD-src-c98bb6fb8fe1b6c9437608e3d30fd1cbf47e2e6a.tar.gz
Add support for Intel G41 chipset
Submitted by: Artyom Mirgorodsky <man@email.com.ua> MFC after: 3 days
Diffstat (limited to 'sys/dev/drm/i915_drv.h')
-rw-r--r--sys/dev/drm/i915_drv.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/drm/i915_drv.h b/sys/dev/drm/i915_drv.h
index ac75413..38ae374 100644
--- a/sys/dev/drm/i915_drv.h
+++ b/sys/dev/drm/i915_drv.h
@@ -644,7 +644,8 @@ extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller);
(dev)->pci_device == 0x2A42 || \
(dev)->pci_device == 0x2E02 || \
(dev)->pci_device == 0x2E12 || \
- (dev)->pci_device == 0x2E22)
+ (dev)->pci_device == 0x2E22 || \
+ (dev)->pci_device == 0x2E32)
#define IS_I965GM(dev) ((dev)->pci_device == 0x2A02)
@@ -653,6 +654,7 @@ extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller);
#define IS_G4X(dev) ((dev)->pci_device == 0x2E02 || \
(dev)->pci_device == 0x2E12 || \
(dev)->pci_device == 0x2E22 || \
+ (dev)->pci_device == 0x2E32 || \
IS_GM45(dev))
#define IS_G33(dev) ((dev)->pci_device == 0x29C2 || \
OpenPOWER on IntegriCloud