linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ACPI: fan: fix: Update Tiger Lake ACPI device ID
@ 2020-06-30 15:41 Sumeet Pawnikar
  2020-06-30 17:34 ` Rafael J. Wysocki
  0 siblings, 1 reply; 2+ messages in thread
From: Sumeet Pawnikar @ 2020-06-30 15:41 UTC (permalink / raw)
  To: rafael.j.wysocki, srinivas.pandruvada, andriy.shevchenko,
	linux-pm, linux-kernel
  Cc: rui.zhang, sumeet.r.pawnikar

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 <sumeet.r.pawnikar@intel.com>
---
 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


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-06-30 17:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-30 15:41 [PATCH] ACPI: fan: fix: Update Tiger Lake ACPI device ID Sumeet Pawnikar
2020-06-30 17:34 ` Rafael J. Wysocki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).