mirror of
https://github.com/torvalds/linux.git
synced 2026-09-22 12:44:03 +02:00
ACPI: fan: Update ACPI fan IDs to follow modern style
Follow modern style of defining ACPI IDs by using C99 initialisers. This is a missing part to bigger rework that's ongoing in the kernel. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Armin Wolf <W_Armin@gmx.de> Link: https://patch.msgid.link/20260717170951.1782863-3-andriy.shevchenko@linux.intel.com Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
96a3a2cd26
commit
2eb0ea3664
|
|
@ -14,17 +14,17 @@
|
|||
#include <linux/limits.h>
|
||||
#include <linux/types.h>
|
||||
|
||||
#define ACPI_FAN_DEVICE_IDS \
|
||||
{"INT3404", }, /* Fan */ \
|
||||
{"INTC1044", }, /* Fan for Tiger Lake generation */ \
|
||||
{"INTC1048", }, /* Fan for Alder Lake generation */ \
|
||||
{"INTC1063", }, /* Fan for Meteor Lake generation */ \
|
||||
{"INTC106A", }, /* Fan for Lunar Lake generation */ \
|
||||
{"INTC10A2", }, /* Fan for Raptor Lake generation */ \
|
||||
{"INTC10D6", }, /* Fan for Panther Lake generation */ \
|
||||
{"INTC10FE", }, /* Fan for Wildcat Lake generation */ \
|
||||
{"INTC10F5", }, /* Fan for Nova Lake generation */ \
|
||||
{"PNP0C0B", } /* Generic ACPI fan */
|
||||
#define ACPI_FAN_DEVICE_IDS \
|
||||
{ .id = "INT3404" }, /* Fan */ \
|
||||
{ .id = "INTC1044" }, /* Fan for Tiger Lake generation */ \
|
||||
{ .id = "INTC1048" }, /* Fan for Alder Lake generation */ \
|
||||
{ .id = "INTC1063" }, /* Fan for Meteor Lake generation */ \
|
||||
{ .id = "INTC106A" }, /* Fan for Lunar Lake generation */ \
|
||||
{ .id = "INTC10A2" }, /* Fan for Raptor Lake generation */ \
|
||||
{ .id = "INTC10D6" }, /* Fan for Panther Lake generation */ \
|
||||
{ .id = "INTC10FE" }, /* Fan for Wildcat Lake generation */ \
|
||||
{ .id = "INTC10F5" }, /* Fan for Nova Lake generation */ \
|
||||
{ .id = "PNP0C0B" } /* Generic ACPI fan */
|
||||
|
||||
#define ACPI_FPS_NAME_LEN 20
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user