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+ <[email protected]> # 5.6+ Suggested-by: Srinivas Pandruvada <[email protected]> Signed-off-by: Gayatri Kammela <[email protected]> Acked-by: Zhang Rui <[email protected]> Reviewed-by: Andy Shevchenko <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent d5764dc commit 26d8bec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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)