We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c168bae commit f64a658Copy full SHA for f64a658
drivers/thermal/intel/int340x_thermal/processor_thermal_device.c
@@ -42,6 +42,9 @@
42
/* IceLake thermal reporting device */
43
#define PCI_DEVICE_ID_PROC_ICL_THERMAL 0x8a03
44
45
+/* JasperLake thermal reporting device */
46
+#define PCI_DEVICE_ID_PROC_JSL_THERMAL 0x4503
47
+
48
#define DRV_NAME "proc_thermal"
49
50
struct power_config {
@@ -724,6 +727,7 @@ static const struct pci_device_id proc_thermal_pci_ids[] = {
724
727
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_PROC_GLK_THERMAL)},
725
728
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_PROC_ICL_THERMAL),
726
729
.driver_data = (kernel_ulong_t)&rapl_mmio_hsw, },
730
+ { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_PROC_JSL_THERMAL)},
731
{ 0, },
732
};
733
0 commit comments