[PATCH 2/4][SRU][V2][F] platform/x86: intel-hid: fix: Update Tiger Lake ACPI device ID
Alex Hung
alex.hung at canonical.com
Wed Jan 27 22:21:05 UTC 2021
From: Gayatri Kammela <gayatri.kammela at intel.com>
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: bdd11b654035 ("platform/x86: intel-hid: Add Tiger Lake ACPI device ID")
Suggested-by: Srinivas Pandruvada <srinivas.pandruvada at intel.com>
Signed-off-by: Gayatri Kammela <gayatri.kammela at intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko at linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki at intel.com>
(cherry picked from commit d5764dc597467664a1a70ab66a2314a011aeccd4)
Signed-off-by: Alex Hung <alex.hung at canonical.com>
---
drivers/platform/x86/intel-hid.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/platform/x86/intel-hid.c b/drivers/platform/x86/intel-hid.c
index df1f40c9644c..6fdf064ba67f 100644
--- a/drivers/platform/x86/intel-hid.c
+++ b/drivers/platform/x86/intel-hid.c
@@ -19,8 +19,8 @@ MODULE_LICENSE("GPL");
MODULE_AUTHOR("Alex Hung");
static const struct acpi_device_id intel_hid_ids[] = {
- {"INT1051", 0},
{"INT33D5", 0},
+ {"INTC1051", 0},
{"", 0},
};
--
2.25.1
More information about the kernel-team
mailing list