From: Bob Moore Date: Thu, 11 Jan 2018 17:47:59 +0000 (+0000) Subject: ACPICA: Make ACPI Power Management Timer (PM Timer) optional. X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~818 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=6ae9232b0d4c1f955c65209571e8fb470aea26c5;p=xen.git ACPICA: Make ACPI Power Management Timer (PM Timer) optional. PM Timer is now optional. This support is already in Windows8 and "SHOULD" come out in ACPI 5.0A (if all goes well). The change doesn't affect Xen directly, because it does not rely on the presence of the PM timer. Signed-off-by: Bob Moore Signed-off-by: Lv Zheng Signed-off-by: Rafael J. Wysocki [ported to Xen] Signed-off-by: Roger Pau Monné --- diff --git a/xen/drivers/acpi/tables/tbfadt.c b/xen/drivers/acpi/tables/tbfadt.c index d62d8d5cb9..f11fd5a900 100644 --- a/xen/drivers/acpi/tables/tbfadt.c +++ b/xen/drivers/acpi/tables/tbfadt.c @@ -95,7 +95,8 @@ static struct acpi_fadt_info __initdata fadt_info_table[] = { {"PmTimerBlock", ACPI_FADT_OFFSET(xpm_timer_block), ACPI_FADT_OFFSET(pm_timer_block), - ACPI_FADT_OFFSET(pm_timer_length), ACPI_FADT_REQUIRED}, + ACPI_FADT_OFFSET(pm_timer_length), + ACPI_FADT_SEPARATE_LENGTH}, /* ACPI 5.0A: Timer is optional */ {"Gpe0Block", ACPI_FADT_OFFSET(xgpe0_block), ACPI_FADT_OFFSET(gpe0_block), @@ -437,7 +438,7 @@ static void __init acpi_tb_validate_fadt(void) if (fadt_info_table[i].type & ACPI_FADT_REQUIRED) { /* - * Field is required (Pm1a_event, Pm1a_control, pm_timer). + * Field is required (Pm1a_event, Pm1a_control). * Both the address and length must be non-zero. */ if (!address64->address || !length) {