diff options
author | Woods, Brian <[email protected]> | 2018-11-06 20:08:21 +0000 |
---|---|---|
committer | Borislav Petkov <[email protected]> | 2018-11-07 21:39:13 +0100 |
commit | 210ba1201ff950b3d05bfd8fa5d47540cea393c0 (patch) | |
tree | a933cbb4e8ed9da8876cb7857a440a9facb2a856 | |
parent | be3518a16ef270e3b030a6ae96055f83f51bd3dd (diff) |
hwmon/k10temp: Add support for AMD family 17h, model 30h CPUs
Add support for AMD family 17h model 30h processors for k10temp. Model
30h is functionally the same as model 01h processors (as far as k10temp
is concerned), just the PCI device IDs need to be updated.
Signed-off-by: Brian Woods <[email protected]>
Signed-off-by: Borislav Petkov <[email protected]>
Acked-by: Guenter Roeck <[email protected]>
CC: Bjorn Helgaas <[email protected]>
CC: Clemens Ladisch <[email protected]>
CC: "H. Peter Anvin" <[email protected]>
CC: Ingo Molnar <[email protected]>
CC: Jean Delvare <[email protected]>
CC: Jia Zhang <[email protected]>
CC: <[email protected]>
CC: <[email protected]>
CC: Pu Wen <[email protected]>
CC: Thomas Gleixner <[email protected]>
CC: x86-ml <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
-rw-r--r-- | drivers/hwmon/k10temp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hwmon/k10temp.c b/drivers/hwmon/k10temp.c index bc6871c8dd4e..9790f1f5eb98 100644 --- a/drivers/hwmon/k10temp.c +++ b/drivers/hwmon/k10temp.c @@ -360,6 +360,7 @@ static const struct pci_device_id k10temp_id_table[] = { { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_16H_M30H_NB_F3) }, { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_17H_DF_F3) }, { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_17H_M10H_DF_F3) }, + { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_17H_M30H_DF_F3) }, {} }; MODULE_DEVICE_TABLE(pci, k10temp_id_table); |