]> Pileus Git - ~andy/linux/blobdiff - drivers/acpi/sleep.c
ACPI / sleep: pm_power_off needs more sanity checks to be installed
[~andy/linux] / drivers / acpi / sleep.c
index b718806657cdac29d9ccb3a1cad3fe6528865176..b0f6c4a2a119b4070af243d5ed72d88544b55ac5 100644 (file)
@@ -807,7 +807,12 @@ int __init acpi_sleep_init(void)
        acpi_sleep_hibernate_setup();
 
        status = acpi_get_sleep_type_data(ACPI_STATE_S5, &type_a, &type_b);
-       if (ACPI_SUCCESS(status)) {
+       /*
+        * Check both ACPI S5 object and ACPI sleep registers to
+        * install pm_power_off_prepare/pm_power_off hook
+        */
+       if (ACPI_SUCCESS(status) && acpi_gbl_FADT.sleep_control.address
+           && acpi_gbl_FADT.sleep_status.address) {
                sleep_states[ACPI_STATE_S5] = 1;
                pm_power_off_prepare = acpi_power_off_prepare;
                pm_power_off = acpi_power_off;