mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-14 08:13:56 +08:00
Merge branch 'acpi-assorted'
* acpi-assorted: ACPI / EC: Add ASUSTEK L4R to quirk list in order to validate ECDT ACPI / thermal: Add check of "_TZD" availability and evaluating result
This commit is contained in:
commit
da48afb26b
@ -987,6 +987,10 @@ static struct dmi_system_id ec_dmi_table[] __initdata = {
|
|||||||
ec_skip_dsdt_scan, "HP Folio 13", {
|
ec_skip_dsdt_scan, "HP Folio 13", {
|
||||||
DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
|
DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
|
||||||
DMI_MATCH(DMI_PRODUCT_NAME, "HP Folio 13"),}, NULL},
|
DMI_MATCH(DMI_PRODUCT_NAME, "HP Folio 13"),}, NULL},
|
||||||
|
{
|
||||||
|
ec_validate_ecdt, "ASUS hardware", {
|
||||||
|
DMI_MATCH(DMI_SYS_VENDOR, "ASUSTek Computer Inc."),
|
||||||
|
DMI_MATCH(DMI_PRODUCT_NAME, "L4R"),}, NULL},
|
||||||
{},
|
{},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -475,14 +475,14 @@ static int acpi_thermal_trips_update(struct acpi_thermal *tz, int flag)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (flag & ACPI_TRIPS_DEVICES) {
|
if ((flag & ACPI_TRIPS_DEVICES)
|
||||||
memset(&devices, 0, sizeof(struct acpi_handle_list));
|
&& acpi_has_method(tz->device->handle, "_TZD")) {
|
||||||
|
memset(&devices, 0, sizeof(devices));
|
||||||
status = acpi_evaluate_reference(tz->device->handle, "_TZD",
|
status = acpi_evaluate_reference(tz->device->handle, "_TZD",
|
||||||
NULL, &devices);
|
NULL, &devices);
|
||||||
if (memcmp(&tz->devices, &devices,
|
if (ACPI_SUCCESS(status)
|
||||||
sizeof(struct acpi_handle_list))) {
|
&& memcmp(&tz->devices, &devices, sizeof(devices))) {
|
||||||
memcpy(&tz->devices, &devices,
|
tz->devices = devices;
|
||||||
sizeof(struct acpi_handle_list));
|
|
||||||
ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
|
ACPI_THERMAL_TRIPS_EXCEPTION(flag, "device");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user