diff mbox series

[2/3,SRU,F] platform/x86: intel-hid: fix: Update Tiger Lake ACPI device ID

Message ID 20210123021454.54672-3-alex.hung@canonical.com
State New
Headers show
Series Add a new hardware ID to intel-hid | expand

Commit Message

Alex Hung Jan. 23, 2021, 2:14 a.m. UTC
From: Gayatri Kammela <gayatri.kammela@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

BugLink: https://bugs.launchpad.net/bugs/1907160

Fixes: bdd11b654035 ("platform/x86: intel-hid: Add Tiger Lake ACPI device ID")
Suggested-by: Srinivas Pandruvada <srinivas.pandruvada@intel.com>
Signed-off-by: Gayatri Kammela <gayatri.kammela@intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
(cherry picked from commit d5764dc597467664a1a70ab66a2314a011aeccd4)
Signed-off-by: Alex Hung <alex.hung@canonical.com>
---
 drivers/platform/x86/intel-hid.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--
2.25.1
diff mbox series

Patch

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},
 };