diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-12-06 03:52:51 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-12-06 03:52:51 +0000 |
commit | 1888c3d8ce0b39d4864005841e57ea6bd73ef04a (patch) | |
tree | d5674a06ad879fe190d05f48f63df5ac040887f9 | |
parent | 4c92ca6144c1808303f0797bbe4d77f99815f87a (diff) |
match family 16h
-rw-r--r-- | share/man/man4/km.4 | 6 | ||||
-rw-r--r-- | sys/dev/pci/km.c | 7 |
2 files changed, 7 insertions, 6 deletions
diff --git a/share/man/man4/km.4 b/share/man/man4/km.4 index 941678fb24a..877d5da8f71 100644 --- a/share/man/man4/km.4 +++ b/share/man/man4/km.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: km.4,v 1.9 2013/07/16 16:05:49 schwarze Exp $ +.\" $OpenBSD: km.4,v 1.10 2014/12/06 03:52:50 jsg Exp $ .\" .\" Copyright (c) 2008 Constantine A. Murenin <cnst+openbsd@bugmail.mojo.ru> .\" @@ -14,7 +14,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: July 16 2013 $ +.Dd $Mdocdate: December 6 2014 $ .Dt KM 4 .Os .Sh NAME @@ -26,7 +26,7 @@ The .Nm driver provides support for the temperature sensors available in the -AMD Family 10h, 11h, 14h, and 15h processors. +AMD Family 10h, 11h, 14h, 15h, and 16h processors. .Pp Each chip reports one temperature sensor. Multiprocessor systems have one instance of diff --git a/sys/dev/pci/km.c b/sys/dev/pci/km.c index bc3df554e4c..6355a2d54d1 100644 --- a/sys/dev/pci/km.c +++ b/sys/dev/pci/km.c @@ -1,4 +1,4 @@ -/* $OpenBSD: km.c,v 1.8 2013/09/17 13:42:34 kettenis Exp $ */ +/* $OpenBSD: km.c,v 1.9 2014/12/06 03:52:50 jsg Exp $ */ /* * Copyright (c) 2008 Constantine A. Murenin <cnst+openbsd@bugmail.mojo.ru> @@ -29,7 +29,7 @@ /* - * AMD Family 10h/11h/14h/15h Processors, Function 3 -- Miscellaneous Control + * AMD Family > 10h Processors, Function 3 -- Miscellaneous Control */ /* Function 3 Registers */ @@ -72,7 +72,8 @@ static const struct pci_matchid km_devices[] = { { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_AMD64_11_MISC }, { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_AMD64_14_MISC }, { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_AMD64_15_0x_MISC }, - { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_AMD64_15_1x_MISC } + { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_AMD64_15_1x_MISC }, + { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_AMD64_16_MISC } }; |