diff options
author | 2016-01-03 05:48:47 +0000 | |
---|---|---|
committer | 2016-01-03 05:48:47 +0000 | |
commit | f07b1ca9ff98123133f94304637082131caf08ac (patch) | |
tree | c47fe503d265c54b3c1880d1bd2dc2a17c55de81 /sys | |
parent | sync (diff) | |
download | wireguard-openbsd-f07b1ca9ff98123133f94304637082131caf08ac.tar.xz wireguard-openbsd-f07b1ca9ff98123133f94304637082131caf08ac.zip |
Add support for 100 series to pchtemp(4).
ok kettenis@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/pchtemp.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/pci/pchtemp.c b/sys/dev/pci/pchtemp.c index 7f51686f135..912a483e517 100644 --- a/sys/dev/pci/pchtemp.c +++ b/sys/dev/pci/pchtemp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pchtemp.c,v 1.1 2015/12/31 13:06:49 kettenis Exp $ */ +/* $OpenBSD: pchtemp.c,v 1.2 2016/01/03 05:48:47 daniel Exp $ */ /* * Copyright (c) 2015 Mark Kettenis * @@ -16,7 +16,7 @@ */ /* - * Intel X99 and C610 PCH thermal sensor controller driver + * Intel X99, C610 and 100 Series PCH thermal sensor controller driver */ #include <sys/param.h> @@ -58,7 +58,8 @@ struct cfattach pchtemp_ca = { }; const struct pci_matchid pchtemp_devices[] = { - { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_C610_THERM } + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_C610_THERM }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_100SERIES_THERM }, }; int |