diff options
author | Sumeet Pawnikar <[email protected]> | 2020-06-30 21:11:49 +0530 |
---|---|---|
committer | Rafael J. Wysocki <[email protected]> | 2020-06-30 19:32:45 +0200 |
commit | 0318e8374e87b32def1d5c279013ca7730a74982 (patch) | |
tree | 33e89c491fa5cef5ac5c95bab31baa259d170c7b | |
parent | 9ebcfadb0610322ac537dd7aa5d9cbc2b2894c68 (diff) |
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 <[email protected]>
Cc: 5.6+ <[email protected]> # 5.6+
[ rjw: Subject and changelog edits ]
Signed-off-by: Rafael J. Wysocki <[email protected]>
-rw-r--r-- | drivers/acpi/fan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/fan.c b/drivers/acpi/fan.c index 873e039ad4b7..62873388b24f 100644 --- a/drivers/acpi/fan.c +++ b/drivers/acpi/fan.c @@ -25,8 +25,8 @@ static int acpi_fan_remove(struct platform_device *pdev); static const struct acpi_device_id fan_device_ids[] = { {"PNP0C0B", 0}, - {"INT1044", 0}, {"INT3404", 0}, + {"INTC1044", 0}, {"", 0}, }; MODULE_DEVICE_TABLE(acpi, fan_device_ids); |