diff options
author | Sumeet Pawnikar <sumeet.r.pawnikar@intel.com> | 2024-04-05 14:26:30 +0200 |
---|---|---|
committer | Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> | 2024-04-08 17:24:07 +0200 |
commit | 79ce88064bb04ec62c4e9e4da4614d36906f8a04 (patch) | |
tree | b94eb898ee50234f715c7f09f908d3fe3f47fe92 /drivers/platform/x86/intel/hid.c | |
parent | platform/x86/intel/hid: Don't wake on 5-button releases (diff) | |
download | linux-79ce88064bb04ec62c4e9e4da4614d36906f8a04.tar.xz linux-79ce88064bb04ec62c4e9e4da4614d36906f8a04.zip |
platform/x86/intel/hid: Add Lunar Lake and Arrow Lake support
Add INTC107B for Lunar Lake and INTC10CB for Arrow Lake ACPI devices IDs.
Signed-off-by: Sumeet Pawnikar <sumeet.r.pawnikar@intel.com>
Link: https://lore.kernel.org/r/20240405122630.32154-1-sumeet.r.pawnikar@intel.com
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/platform/x86/intel/hid.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/platform/x86/intel/hid.c b/drivers/platform/x86/intel/hid.c index 9ffbdc988fe5..c7a827645864 100644 --- a/drivers/platform/x86/intel/hid.c +++ b/drivers/platform/x86/intel/hid.c @@ -49,6 +49,8 @@ static const struct acpi_device_id intel_hid_ids[] = { {"INTC1076", 0}, {"INTC1077", 0}, {"INTC1078", 0}, + {"INTC107B", 0}, + {"INTC10CB", 0}, {"", 0}, }; MODULE_DEVICE_TABLE(acpi, intel_hid_ids); |