diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2015-11-04 19:39:31 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2015-11-04 19:39:31 +0000 |
commit | 273b5d96861514566643be3d879e793c3989b429 (patch) | |
tree | 9e6ec67216fe8b3767b9814bb5cb701467b2749a /sys | |
parent | 4593ba46dad7a725892e82f011852593e966333e (diff) |
allow km(4) to match the temperature sensor in GX-412TC SOC (as used on APU2)
tested by nothingness at citycable.ch, ok bmercer@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/km.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/km.c b/sys/dev/pci/km.c index 663986080c3..89a8b9ca1bd 100644 --- a/sys/dev/pci/km.c +++ b/sys/dev/pci/km.c @@ -1,4 +1,4 @@ -/* $OpenBSD: km.c,v 1.10 2015/03/14 03:38:48 jsg Exp $ */ +/* $OpenBSD: km.c,v 1.11 2015/11/04 19:39:30 sthen Exp $ */ /* * Copyright (c) 2008 Constantine A. Murenin <cnst+openbsd@bugmail.mojo.ru> @@ -72,7 +72,8 @@ static const struct pci_matchid km_devices[] = { { 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_16_MISC } + { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_AMD64_16_MISC }, + { PCI_VENDOR_AMD, PCI_PRODUCT_AMD_AMD64_16_3X_MISC } }; |