Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

int340x_thermal/processor_thermal_device: add support to Skylake processors

Add PCI ID of Skylake thermal reporting device.

Signed-off-by: Brian Bian <brian.bian@intel.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>

authored by

Brian Bian and committed by
Zhang Rui
383b4d60 bd7081ae

+4
+4
drivers/thermal/int340x_thermal/processor_thermal_device.c
··· 27 27 #define PCI_DEVICE_ID_PROC_BDW_THERMAL 0x1603 28 28 #define PCI_DEVICE_ID_PROC_HSB_THERMAL 0x0A03 29 29 30 + /* Skylake thermal reporting device */ 31 + #define PCI_DEVICE_ID_PROC_SKL_THERMAL 0x1903 32 + 30 33 /* Braswell thermal reporting device */ 31 34 #define PCI_DEVICE_ID_PROC_BSW_THERMAL 0x22DC 32 35 ··· 402 399 static const struct pci_device_id proc_thermal_pci_ids[] = { 403 400 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_PROC_BDW_THERMAL)}, 404 401 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_PROC_HSB_THERMAL)}, 402 + { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_PROC_SKL_THERMAL)}, 405 403 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_PROC_BSW_THERMAL)}, 406 404 { 0, }, 407 405 };