Skip to content

Commit 26d8bec

Browse files
gkammelarafaeljw
authored andcommitted
thermal: int340x_thermal: fix: Update Tiger Lake ACPI device IDs
Tiger Lake's new unique ACPI device IDs for Intel thermal driver are not valid because of missing 'C' in the IDs. Fix the IDs by updating them. After the update, the new IDs should now look like INT1040 --> INTC1040 INT1043 --> INTC1043 Fixes: 9b1b553 ("thermal: int340x_thermal: Add Tiger Lake ACPI device IDs") Cc: 5.6+ <stable@vger.kernel.org> # 5.6+ Suggested-by: Srinivas Pandruvada <srinivas.pandruvada@intel.com> Signed-off-by: Gayatri Kammela <gayatri.kammela@intel.com> Acked-by: Zhang Rui <rui.zhang@intel.com> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent d5764dc commit 26d8bec

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/thermal/intel/int340x_thermal/int3400_thermal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,8 +369,8 @@ static int int3400_thermal_remove(struct platform_device *pdev)
369369
}
370370

371371
static const struct acpi_device_id int3400_thermal_match[] = {
372-
{"INT1040", 0},
373372
{"INT3400", 0},
373+
{"INTC1040", 0},
374374
{}
375375
};
376376

drivers/thermal/intel/int340x_thermal/int3403_thermal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,8 @@ static int int3403_remove(struct platform_device *pdev)
282282
}
283283

284284
static const struct acpi_device_id int3403_device_ids[] = {
285-
{"INT1043", 0},
286285
{"INT3403", 0},
286+
{"INTC1043", 0},
287287
{"", 0},
288288
};
289289
MODULE_DEVICE_TABLE(acpi, int3403_device_ids);

0 commit comments

Comments
 (0)