Skip to content

Commit

Permalink
platform/x86/intel: hid: Add Pantherlake support
Browse files Browse the repository at this point in the history
Add Pantherlake ACPI device ID to the Intel HID driver.

While there, clean up the device ID table to remove the ", 0" parts.

Suggested-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Saranya Gopal <saranya.gopal@intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20250421041332.830136-1-saranya.gopal@intel.com
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Saranya Gopal authored and Ilpo Järvinen committed Apr 23, 2025
1 parent 4a8e04e commit 12df9ec
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions drivers/platform/x86/intel/hid.c
Original file line number Diff line number Diff line change
@@ -44,16 +44,17 @@ MODULE_LICENSE("GPL");
MODULE_AUTHOR("Alex Hung");

static const struct acpi_device_id intel_hid_ids[] = {
{"INT33D5", 0},
{"INTC1051", 0},
{"INTC1054", 0},
{"INTC1070", 0},
{"INTC1076", 0},
{"INTC1077", 0},
{"INTC1078", 0},
{"INTC107B", 0},
{"INTC10CB", 0},
{"", 0},
{ "INT33D5" },
{ "INTC1051" },
{ "INTC1054" },
{ "INTC1070" },
{ "INTC1076" },
{ "INTC1077" },
{ "INTC1078" },
{ "INTC107B" },
{ "INTC10CB" },
{ "INTC10CC" },
{ }
};
MODULE_DEVICE_TABLE(acpi, intel_hid_ids);

0 comments on commit 12df9ec

Please sign in to comment.