diff options
author | 2016-05-24 07:59:24 +0000 | |
---|---|---|
committer | 2016-05-24 07:59:24 +0000 | |
commit | 1aadbb50a73c70c1c72cf63bc72a528d5f526713 (patch) | |
tree | 7d12db0b47aad0a09b84cd536f05802c35613a0f | |
parent | USB_DISCOVER and USB_GET_STRING_DESC are no more. (diff) | |
download | wireguard-openbsd-1aadbb50a73c70c1c72cf63bc72a528d5f526713.tar.xz wireguard-openbsd-1aadbb50a73c70c1c72cf63bc72a528d5f526713.zip |
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 |