Commit-ID: 210ba1201ff950b3d05bfd8fa5d47540cea393c0 Gitweb: https://git.kernel.org/tip/210ba1201ff950b3d05bfd8fa5d47540cea393c0 Author: Woods, Brian <[email protected]> AuthorDate: Tue, 6 Nov 2018 20:08:21 +0000 Committer: Borislav Petkov <[email protected]> CommitDate: Wed, 7 Nov 2018 21:39:13 +0100
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] --- drivers/hwmon/k10temp.c | 1 + 1 file changed, 1 insertion(+) 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);
