From 67736dbc9435ab95ab4092d73a5b057039d14d30 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Fri, 15 Jan 2010 14:28:02 -0800 Subject: [PATCH] Add support for Sandybridge mobile chipset. --- lib/intel_chipset.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h index 3545657e..c7ffcab2 100755 --- a/lib/intel_chipset.h +++ b/lib/intel_chipset.h @@ -71,6 +71,7 @@ #define PCI_CHIP_ILM_G 0x0046 #define PCI_CHIP_SANDYBRIDGE 0x0102 +#define PCI_CHIP_SANDYBRIDGE_M 0x0106 #define IS_MOBILE(devid) (devid == PCI_CHIP_I855_GM || \ devid == PCI_CHIP_I915_GM || \ @@ -114,7 +115,8 @@ IS_IRONLAKE(devid) || \ IS_GEN6(devid)) -#define IS_GEN6(devid) (devid == PCI_CHIP_SANDYBRIDGE) +#define IS_GEN6(devid) (devid == PCI_CHIP_SANDYBRIDGE || \ + devid == PCI_CHIP_SANDYBRIDGE_M) #define IS_9XX(devid) (IS_915(devid) || \ IS_945(devid) || \