From 503cfa2707bca2c06895f51d50fa38218ff16aa7 Mon Sep 17 00:00:00 2001 From: Jesse Barnes Date: Mon, 10 Oct 2011 11:24:42 -0700 Subject: [PATCH] Treat PPT like CPT as we do in the kernel Set the pch type to CPT if we detect a PPT as well. --- lib/intel_pci.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/intel_pci.c b/lib/intel_pci.c index db436be..7bc7466 100644 --- a/lib/intel_pci.c +++ b/lib/intel_pci.c @@ -82,7 +82,8 @@ intel_check_pch(void) return; if (pch_dev->vendor_id == 0x8086 && - (pch_dev->device_id & 0xff00) == 0x1c00) + (((pch_dev->device_id & 0xff00) == 0x1c00) || + (pch_dev->device_id & 0xff00) == 0x1e00)) pch = PCH_CPT; } -- 2.7.4