summaryrefslogtreecommitdiffstats
path: root/sys/x86/pci
diff options
context:
space:
mode:
Diffstat (limited to 'sys/x86/pci')
-rw-r--r--sys/x86/pci/qpi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/x86/pci/qpi.c b/sys/x86/pci/qpi.c
index 570f913..169c1cd 100644
--- a/sys/x86/pci/qpi.c
+++ b/sys/x86/pci/qpi.c
@@ -62,7 +62,8 @@ qpi_identify(driver_t *driver, device_t parent)
{
/* Check CPUID to ensure this is an i7 CPU of some sort. */
- if (!(cpu_vendor_id == CPU_VENDOR_INTEL && CPUID_TO_FAMILY(cpu_id) &&
+ if (!(cpu_vendor_id == CPU_VENDOR_INTEL &&
+ CPUID_TO_FAMILY(cpu_id) == 0x6 &&
(CPUID_TO_MODEL(cpu_id) == 0x1a || CPUID_TO_MODEL(cpu_id) == 0x2c)))
return;
OpenPOWER on IntegriCloud