diff options
author | Eric Anholt <eric@anholt.net> | 2007-11-16 15:01:48 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2007-11-16 15:36:18 -0800 |
commit | a66413874dd50512daf10ce6254bbafd14b61ac7 (patch) | |
tree | 2030dccb35db2dbdc4d019b3bbf889963bbf541f | |
parent | 3bd07ba0d4f759e3a17e2a5ed51086b44705a482 (diff) |
[intel] Fix typos in intel_chipset.h macros.
-rw-r--r-- | src/mesa/drivers/dri/intel/intel_chipset.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_chipset.h b/src/mesa/drivers/dri/intel/intel_chipset.h index a18ca5be0..2f49bf77e 100644 --- a/src/mesa/drivers/dri/intel/intel_chipset.h +++ b/src/mesa/drivers/dri/intel/intel_chipset.h @@ -59,18 +59,18 @@ devid == PCI_CHIP_I965_GM || \ devid == PCI_CHIP_I965_GME) -#define IS_965(devid) (devid = PCI_CHIP_I965_G || \ +#define IS_965(devid) (devid == PCI_CHIP_I965_G || \ devid == PCI_CHIP_I965_Q || \ devid == PCI_CHIP_I965_G_1 || \ devid == PCI_CHIP_I965_GM || \ devid == PCI_CHIP_I965_GME || \ devid == PCI_CHIP_I946_GZ) -#define IS_9XX(devid) (devid == PCI_CHIP_I915G || \ - devid == PCI_CHIP_I915GM || \ - devid == PCI_CHIP_I945G || \ - devid == PCI_CHIP_I945GM || \ - devid == PCI_CHIP_I945GME || \ +#define IS_9XX(devid) (devid == PCI_CHIP_I915_G || \ + devid == PCI_CHIP_I915_GM || \ + devid == PCI_CHIP_I945_G || \ + devid == PCI_CHIP_I945_GM || \ + devid == PCI_CHIP_I945_GME || \ devid == PCI_CHIP_G33_G || \ devid == PCI_CHIP_Q35_G || \ devid == PCI_CHIP_Q33_G || \ |