On Fri, Nov 02, 2018 at 06:11:12PM +0000, Woods, Brian wrote: > 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 <brian.woods@xxxxxxx> Acked-by: Guenter Roeck <linux@xxxxxxxxxxxx> (assuming the patch will be sent upstream as part of the series and not through hwmon) > --- > arch/x86/kernel/amd_nb.c | 1 - > drivers/hwmon/k10temp.c | 1 + > include/linux/pci_ids.h | 1 + > 3 files changed, 2 insertions(+), 1 deletion(-) > > diff --git a/arch/x86/kernel/amd_nb.c b/arch/x86/kernel/amd_nb.c > index fd69067f6eb1..e491aa4a1970 100644 > --- a/arch/x86/kernel/amd_nb.c > +++ b/arch/x86/kernel/amd_nb.c > @@ -17,7 +17,6 @@ > #define PCI_DEVICE_ID_AMD_17H_ROOT 0x1450 > #define PCI_DEVICE_ID_AMD_17H_M10H_ROOT 0x15d0 > #define PCI_DEVICE_ID_AMD_17H_M30H_ROOT 0x1480 > -#define PCI_DEVICE_ID_AMD_17H_M30H_DF_F3 0x1493 > #define PCI_DEVICE_ID_AMD_17H_DF_F4 0x1464 > #define PCI_DEVICE_ID_AMD_17H_M10H_DF_F4 0x15ec > #define PCI_DEVICE_ID_AMD_17H_M30H_DF_F4 0x1494 > 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); > diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h > index 78d5cd29778a..349276fbd269 100644 > --- a/include/linux/pci_ids.h > +++ b/include/linux/pci_ids.h > @@ -547,6 +547,7 @@ > #define PCI_DEVICE_ID_AMD_16H_M30H_NB_F4 0x1584 > #define PCI_DEVICE_ID_AMD_17H_DF_F3 0x1463 > #define PCI_DEVICE_ID_AMD_17H_M10H_DF_F3 0x15eb > +#define PCI_DEVICE_ID_AMD_17H_M30H_DF_F3 0x1493 > #define PCI_DEVICE_ID_AMD_CNB17H_F3 0x1703 > #define PCI_DEVICE_ID_AMD_LANCE 0x2000 > #define PCI_DEVICE_ID_AMD_LANCE_HOME 0x2001 > -- > 2.11.0 >