diff options
author | Adam Jackson <ajax@redhat.com> | 2010-04-15 14:03:30 -0400 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2010-04-18 16:56:46 -0700 |
commit | 5ce8ba7c9279a63f99e1f131602580472b8af968 (patch) | |
tree | 9dfc2eb987730d8e984a4c0fba83ebb5d995dacb /drivers/gpu/drm/i915/i915_drv.h | |
parent | 8f4695ed1c9e068772bcce4cd4ff03f88d57a008 (diff) | |
download | lwn-5ce8ba7c9279a63f99e1f131602580472b8af968.tar.gz lwn-5ce8ba7c9279a63f99e1f131602580472b8af968.zip |
drm/i915: Fix 82854 PCI ID, and treat it like other 85X
pci.ids and the datasheet both say it's 358e, not 35e8.
Signed-off-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'drivers/gpu/drm/i915/i915_drv.h')
-rw-r--r-- | drivers/gpu/drm/i915/i915_drv.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index 6960849522f8..051b167e60ac 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -195,6 +195,7 @@ struct intel_overlay; struct intel_device_info { u8 is_mobile : 1; u8 is_i8xx : 1; + u8 is_i85x : 1; u8 is_i915g : 1; u8 is_i9xx : 1; u8 is_i945gm : 1; @@ -1070,7 +1071,7 @@ extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller); #define IS_I830(dev) ((dev)->pci_device == 0x3577) #define IS_845G(dev) ((dev)->pci_device == 0x2562) -#define IS_I85X(dev) ((dev)->pci_device == 0x3582) +#define IS_I85X(dev) (INTEL_INFO(dev)->is_i85x) #define IS_I865G(dev) ((dev)->pci_device == 0x2572) #define IS_GEN2(dev) (INTEL_INFO(dev)->is_i8xx) #define IS_I915G(dev) (INTEL_INFO(dev)->is_i915g) |