diff options
author | Luiz Otavio O Souza <loos@FreeBSD.org> | 2016-04-19 15:07:04 +0000 |
---|---|---|
committer | Luiz Otavio O Souza <loos@FreeBSD.org> | 2016-04-19 15:07:04 +0000 |
commit | df20515d58eaa5c20dd12e565e41803ad3b8238a (patch) | |
tree | f0c6b711ec44f195fd2fd583ae048f59255f4d54 | |
parent | e72dd8d78f768f0d7f05aa67b4752a1d7be722c2 (diff) |
Notes
-rw-r--r-- | sys/dev/amdtemp/amdtemp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/amdtemp/amdtemp.c b/sys/dev/amdtemp/amdtemp.c index 54f47ce14d80..aa4666177251 100644 --- a/sys/dev/amdtemp/amdtemp.c +++ b/sys/dev/amdtemp/amdtemp.c @@ -80,6 +80,7 @@ struct amdtemp_softc { #define DEVICEID_AMD_MISC14 0x1703 #define DEVICEID_AMD_MISC15 0x1603 #define DEVICEID_AMD_MISC16 0x1533 +#define DEVICEID_AMD_MISC16_M30H 0x1583 #define DEVICEID_AMD_MISC17 0x141d static struct amdtemp_product { @@ -93,6 +94,7 @@ static struct amdtemp_product { { VENDORID_AMD, DEVICEID_AMD_MISC14 }, { VENDORID_AMD, DEVICEID_AMD_MISC15 }, { VENDORID_AMD, DEVICEID_AMD_MISC16 }, + { VENDORID_AMD, DEVICEID_AMD_MISC16_M30H }, { VENDORID_AMD, DEVICEID_AMD_MISC17 }, { 0, 0 } }; |