2020-06-30 15:38:25

by Sumeet Pawnikar

[permalink] [raw]
Subject: [PATCH] ACPI: fan: fix: Update 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. Fix this Fan ID by updating it.

Fixes: c248dfe7e0ca ("ACPI: fan: Add Tiger Lake ACPI device ID")
Signed-off-by: Sumeet Pawnikar <[email protected]>
---
drivers/acpi/fan.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

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 const struct acpi_device_id fan_device_ids[] = {
{"PNP0C0B", 0},
- {"INT1044", 0},
{"INT3404", 0},
+ {"INTC1044", 0},
{"", 0},
};
MODULE_DEVICE_TABLE(acpi, fan_device_ids);
--
1.7.9.5


2020-06-30 18:58:03

by Rafael J. Wysocki

[permalink] [raw]
Subject: Re: [PATCH] ACPI: fan: fix: Update Tiger Lake ACPI device ID

[Cc linux-acpi]

On Tue, Jun 30, 2020 at 5:35 PM Sumeet Pawnikar
<[email protected]> wrote:
>
> Tiger Lake's new unique ACPI device ID for Fan is not valid
> because of missing 'C' in the ID. Fix this Fan ID by updating it.
>
> Fixes: c248dfe7e0ca ("ACPI: fan: Add Tiger Lake ACPI device ID")
> Signed-off-by: Sumeet Pawnikar <[email protected]>
> ---
> drivers/acpi/fan.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> 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 const struct acpi_device_id fan_device_ids[] = {
> {"PNP0C0B", 0},
> - {"INT1044", 0},
> {"INT3404", 0},
> + {"INTC1044", 0},
> {"", 0},
> };
> MODULE_DEVICE_TABLE(acpi, fan_device_ids);
> --

Applied as 5.8-rc material with some changelog and subject edits, thanks!