diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2016-05-24 07:59:25 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2016-05-24 07:59:25 +0000 |
commit | 67e6bc2c7456f7356cdc8838e87366ab1a179b21 (patch) | |
tree | 76a116d81e95d2c85ecec90bd3860b3290dc3eda | |
parent | 33959b3867df245f4e89935aa96f5bdbdeb2328c (diff) |
Add PCI_PRODUCT_INTEL_100SERIES_LP_THERM, suggested by kettenis@
-rw-r--r-- | sys/dev/pci/pchtemp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/pchtemp.c b/sys/dev/pci/pchtemp.c index d8f71ff6dfa..67a64567806 100644 --- a/sys/dev/pci/pchtemp.c +++ b/sys/dev/pci/pchtemp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pchtemp.c,v 1.3 2016/02/06 12:50:26 kettenis Exp $ */ +/* $OpenBSD: pchtemp.c,v 1.4 2016/05/24 07:59:24 reyk Exp $ */ /* * Copyright (c) 2015 Mark Kettenis * @@ -62,6 +62,7 @@ const struct pci_matchid pchtemp_devices[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_C610_THERM }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_9SERIES_LP_THERM }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_100SERIES_THERM }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_100SERIES_LP_THERM }, }; int |