Treat PPT like CPT as we do in the kernel

Set the pch type to CPT if we detect a PPT as well.
This commit is contained in:
Jesse Barnes 2011-10-10 11:24:42 -07:00
parent af6a25c187
commit 503cfa2707

View File

@ -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;
}