Skip to content

Commit d5764dc

Browse files
gkammelarafaeljw
authored andcommitted
platform/x86: intel-hid: fix: Update Tiger Lake ACPI device ID
Tiger Lake's new unique ACPI device IDs for intel-hid driver is not valid because of missing 'C' in the ID. Fix the ID by updating it. After the update, the new ID should now look like INT1051 --> INTC1051 Fixes: bdd11b6 ("platform/x86: intel-hid: Add Tiger Lake ACPI device ID") Suggested-by: Srinivas Pandruvada <[email protected]> Signed-off-by: Gayatri Kammela <[email protected]> Reviewed-by: Andy Shevchenko <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent b62c770 commit d5764dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/platform/x86/intel-hid.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ MODULE_LICENSE("GPL");
1919
MODULE_AUTHOR("Alex Hung");
2020

2121
static const struct acpi_device_id intel_hid_ids[] = {
22-
{"INT1051", 0},
2322
{"INT33D5", 0},
23+
{"INTC1051", 0},
2424
{"", 0},
2525
};
2626

0 commit comments

Comments
 (0)