From: Rodrigo Vivi Date: Mon, 13 May 2013 20:53:38 +0000 (-0300) Subject: i965: Add missing Haswell GT3 Desktop to IS_HSW_GT3 check. X-Git-Tag: android-x86-4.4-r3~11653 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=888fc7a89197972aac614fc19d1c82ed1adbb3f2;p=android-x86%2Fexternal-mesa.git i965: Add missing Haswell GT3 Desktop to IS_HSW_GT3 check. NOTE: This is a candidate for stable branches. Signed-off-by: Rodrigo Vivi Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/drivers/dri/intel/intel_chipset.h b/src/mesa/drivers/dri/intel/intel_chipset.h index df025ac2695..ee735bb2fbf 100644 --- a/src/mesa/drivers/dri/intel/intel_chipset.h +++ b/src/mesa/drivers/dri/intel/intel_chipset.h @@ -230,8 +230,8 @@ devid == PCI_CHIP_HASWELL_CRW_GT2 || \ devid == PCI_CHIP_HASWELL_CRW_M_GT2 || \ devid == PCI_CHIP_HASWELL_CRW_S_GT2) - -#define IS_HSW_GT3(devid) (devid == PCI_CHIP_HASWELL_M_GT3 || \ +#define IS_HSW_GT3(devid) (devid == PCI_CHIP_HASWELL_GT3 || \ + devid == PCI_CHIP_HASWELL_M_GT3 || \ devid == PCI_CHIP_HASWELL_S_GT3 || \ devid == PCI_CHIP_HASWELL_SDV_GT3 || \ devid == PCI_CHIP_HASWELL_SDV_M_GT3 || \