diff options
author | Ivan Hu <ivan.hu@canonical.com> | 2022-11-02 03:05:48 +0100 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2022-11-07 12:33:49 +0100 |
commit | a977ece5773b6746b814aac410da4776023db239 (patch) | |
tree | 6df4953cbeb183a0ea3f0c8769dcfd3002409e50 /drivers/platform/x86/intel/hid.c | |
parent | platform/x86/intel/pmt: Sapphire Rapids PMT errata fix (diff) | |
download | linux-a977ece5773b6746b814aac410da4776023db239.tar.xz linux-a977ece5773b6746b814aac410da4776023db239.zip |
platform/x86/intel/hid: Add some ACPI device IDs
Add INTC1076 (JasonLake), INTC1077 (MeteorLake) and INTC1078 (RaptorLake)
devices IDs.
Signed-off-by: Ivan Hu <ivan.hu@canonical.com>
Link: https://lore.kernel.org/r/20221102020548.5225-1-ivan.hu@canonical.com
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/platform/x86/intel/hid.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/platform/x86/intel/hid.c b/drivers/platform/x86/intel/hid.c index 79cff1fc675c..b6313ecd190c 100644 --- a/drivers/platform/x86/intel/hid.c +++ b/drivers/platform/x86/intel/hid.c @@ -27,6 +27,9 @@ static const struct acpi_device_id intel_hid_ids[] = { {"INTC1051", 0}, {"INTC1054", 0}, {"INTC1070", 0}, + {"INTC1076", 0}, + {"INTC1077", 0}, + {"INTC1078", 0}, {"", 0}, }; MODULE_DEVICE_TABLE(acpi, intel_hid_ids); |