Skip to content

Commit 67d6096

Browse files
saranyagopal1jfvogel
authored andcommitted
platform/x86/intel: hid: Add Pantherlake support
[ Upstream commit 12df9ec ] 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> Signed-off-by: Sasha Levin <sashal@kernel.org> (cherry picked from commit 00fe4c0e469596e339d084d0d258af03c80fc790) Signed-off-by: Jack Vogel <jack.vogel@oracle.com>
1 parent df3abea commit 67d6096

File tree

1 file changed

+11
-10
lines changed
  • drivers/platform/x86/intel

1 file changed

+11
-10
lines changed

drivers/platform/x86/intel/hid.c

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,17 @@ MODULE_LICENSE("GPL");
4444
MODULE_AUTHOR("Alex Hung");
4545

4646
static const struct acpi_device_id intel_hid_ids[] = {
47-
{"INT33D5", 0},
48-
{"INTC1051", 0},
49-
{"INTC1054", 0},
50-
{"INTC1070", 0},
51-
{"INTC1076", 0},
52-
{"INTC1077", 0},
53-
{"INTC1078", 0},
54-
{"INTC107B", 0},
55-
{"INTC10CB", 0},
56-
{"", 0},
47+
{ "INT33D5" },
48+
{ "INTC1051" },
49+
{ "INTC1054" },
50+
{ "INTC1070" },
51+
{ "INTC1076" },
52+
{ "INTC1077" },
53+
{ "INTC1078" },
54+
{ "INTC107B" },
55+
{ "INTC10CB" },
56+
{ "INTC10CC" },
57+
{ }
5758
};
5859
MODULE_DEVICE_TABLE(acpi, intel_hid_ids);
5960

0 commit comments

Comments
 (0)