diff options
author | Daniel Dickman <daniel@cvs.openbsd.org> | 2016-01-03 05:48:48 +0000 |
---|---|---|
committer | Daniel Dickman <daniel@cvs.openbsd.org> | 2016-01-03 05:48:48 +0000 |
commit | d5e7158e7bb1d03880041f64e802a04e6c147af2 (patch) | |
tree | 25d65d9b84e2ea5408238ccd262356e548e1debd /sys | |
parent | fb78f459ed51921d7c7b92e37cdd968e34e2e24f (diff) |
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 |