diff options
author | Wang Zhenyu <zhenyu.z.wang@intel.com> | 2006-09-06 22:57:17 +0800 |
---|---|---|
committer | Wang Zhenyu <zhenyu.z.wang@intel.com> | 2006-09-06 22:57:17 +0800 |
commit | e2ea72187e470c2c13adbd3fba4177bd4a0ecc37 (patch) | |
tree | aa739658aa9744a3dcc2b978cf0be0342c5b45c4 | |
parent | 0316f93d51abc52b816e936e0ece304ac47799c3 (diff) |
Adding pci id for Crestline
-rw-r--r-- | shared-core/drm_pciids.txt | 1 | ||||
-rw-r--r-- | shared-core/i915_dma.c | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/shared-core/drm_pciids.txt b/shared-core/drm_pciids.txt index 9ef2c001..1cb73950 100644 --- a/shared-core/drm_pciids.txt +++ b/shared-core/drm_pciids.txt @@ -275,6 +275,7 @@ 0x8086 0x2982 0 "Intel i965G" 0x8086 0x2992 0 "Intel i965Q" 0x8086 0x29A2 0 "Intel i965G" +0x8086 0x2A02 0 "Intel Crestline" [imagine] 0x105d 0x2309 IMAGINE_128 "Imagine 128" diff --git a/shared-core/i915_dma.c b/shared-core/i915_dma.c index ba8c56ee..1a89514b 100644 --- a/shared-core/i915_dma.c +++ b/shared-core/i915_dma.c @@ -34,7 +34,8 @@ #define IS_I965G(dev) (dev->pdev->device == 0x2972 || \ dev->pdev->device == 0x2982 || \ dev->pdev->device == 0x2992 || \ - dev->pdev->device == 0x29A2) + dev->pdev->device == 0x29A2 || \ + dev->pdev->device == 0x2A02) /* Really want an OS-independent resettable timer. Would like to have |