Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ACPI: fan: Fix Tiger Lake ACPI device ID

Tiger Lake's new unique ACPI device ID for Fan is not valid
because of missing 'C' in the ID. Use correct fan device ID.

Fixes: c248dfe7e0ca ("ACPI: fan: Add Tiger Lake ACPI device ID")
Signed-off-by: Sumeet Pawnikar <sumeet.r.pawnikar@intel.com>
Cc: 5.6+ <stable@vger.kernel.org> # 5.6+
[ rjw: Subject and changelog edits ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

authored by

Sumeet Pawnikar and committed by
Rafael J. Wysocki
0318e837 9ebcfadb

+1 -1
+1 -1
drivers/acpi/fan.c
··· 25 25 26 26 static const struct acpi_device_id fan_device_ids[] = { 27 27 {"PNP0C0B", 0}, 28 - {"INT1044", 0}, 29 28 {"INT3404", 0}, 29 + {"INTC1044", 0}, 30 30 {"", 0}, 31 31 }; 32 32 MODULE_DEVICE_TABLE(acpi, fan_device_ids);