]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ACPI / sleep: remove panic in case hardware has changed after S4
authorOliver Neukum <oneukum@suse.de>
Fri, 10 Jan 2014 09:51:53 +0000 (10:51 +0100)
committerJiri Slaby <jslaby@suse.cz>
Mon, 5 May 2014 12:21:49 +0000 (14:21 +0200)
commit 5c551e624abba6782034edd5b9eb58ac6f146b38 upstream.

Some BIOSes change hardware based on the state of
a laptop's lid. If the lid is closed, the touchpad is
disabled and the checksum changes. Windows 8 no longer
aborts resume if the checksum has changed.

Signed-off-by: Oliver Neukum <oneukum@suse.de>
[rjw: Use pr_crit() for the message and don't break the string]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
drivers/acpi/sleep.c

index 99e5158456d8647f61ed7cea6a6c9f59b74109f5..c09e6f646fe4f6c1bcfdb1da654823a4b8f1b494 100644 (file)
@@ -675,11 +675,8 @@ static void acpi_hibernation_leave(void)
        /* Reprogram control registers */
        acpi_leave_sleep_state_prep(ACPI_STATE_S4);
        /* Check the hardware signature */
-       if (facs && s4_hardware_signature != facs->hardware_signature) {
-               printk(KERN_EMERG "ACPI: Hardware changed while hibernated, "
-                       "cannot resume!\n");
-               panic("ACPI S4 hardware signature mismatch");
-       }
+       if (facs && s4_hardware_signature != facs->hardware_signature)
+               pr_crit("ACPI: Hardware changed while hibernated, success doubtful!\n");
        /* Restore the NVS memory area */
        suspend_nvs_restore();
        /* Allow EC transactions to happen. */