mirror of https://gitee.com/openkylin/linux.git
ACPI: fan: Add Tiger Lake ACPI device ID
Tiger Lake has a new unique ACPI device ID for the ACPI fan that needs to be added to the fan driver and to the blacklist in acpi_dev_pm_attach() to support it. Signed-off-by: Gayatri Kammela <gayatri.kammela@intel.com> [ rjw: Subject & changelog, fold in another patch ] Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
55cfe6a5c5
commit
c248dfe7e0
|
@ -1321,6 +1321,7 @@ int acpi_dev_pm_attach(struct device *dev, bool power_on)
|
||||||
*/
|
*/
|
||||||
static const struct acpi_device_id special_pm_ids[] = {
|
static const struct acpi_device_id special_pm_ids[] = {
|
||||||
{"PNP0C0B", }, /* Generic ACPI fan */
|
{"PNP0C0B", }, /* Generic ACPI fan */
|
||||||
|
{"INT1044", }, /* Fan for Tiger Lake generation */
|
||||||
{"INT3404", }, /* Fan */
|
{"INT3404", }, /* Fan */
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
|
@ -25,6 +25,7 @@ static int acpi_fan_remove(struct platform_device *pdev);
|
||||||
|
|
||||||
static const struct acpi_device_id fan_device_ids[] = {
|
static const struct acpi_device_id fan_device_ids[] = {
|
||||||
{"PNP0C0B", 0},
|
{"PNP0C0B", 0},
|
||||||
|
{"INT1044", 0},
|
||||||
{"INT3404", 0},
|
{"INT3404", 0},
|
||||||
{"", 0},
|
{"", 0},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue