From: Eric Anholt Date: Fri, 16 Nov 2007 23:01:48 +0000 (-0800) Subject: [intel] Fix typos in intel_chipset.h macros. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a66413874dd50512daf10ce6254bbafd14b61ac7;p=mesa.git [intel] Fix typos in intel_chipset.h macros. --- diff --git a/src/mesa/drivers/dri/intel/intel_chipset.h b/src/mesa/drivers/dri/intel/intel_chipset.h index a18ca5be08a..2f49bf77ea1 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 || \