The patch titled
ACPI suspend: execute _WAK with the right argument
has been removed from the -mm tree. Its filename was
acpi-suspend-execute-_wak-with-the-right-argument.patch
This patch was dropped because it was merged into mainline or a subsystem tree
The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
------------------------------------------------------
Subject: ACPI suspend: execute _WAK with the right argument
From: Rafael J. Wysocki <[EMAIL PROTECTED]>
The _WAK global ACPI control method has to be called with the
argument representing the sleep state being exited. Make it happen.
Special thanks to Mirco Tischler for reporting the problem and debugging.
Reported-by: Mirco Tischler <[EMAIL PROTECTED]>
Signed-off-by: Rafael J. Wysocki <[EMAIL PROTECTED]>
Cc: Len Brown <[EMAIL PROTECTED]>
Cc: Mirco Tischler <[EMAIL PROTECTED]>
Acked-by: Pavel Machek <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/acpi/hardware/hwsleep.c | 1 +
1 file changed, 1 insertion(+)
diff -puN
drivers/acpi/hardware/hwsleep.c~acpi-suspend-execute-_wak-with-the-right-argument
drivers/acpi/hardware/hwsleep.c
---
a/drivers/acpi/hardware/hwsleep.c~acpi-suspend-execute-_wak-with-the-right-argument
+++ a/drivers/acpi/hardware/hwsleep.c
@@ -616,6 +616,7 @@ acpi_status acpi_leave_sleep_state(u8 sl
return_ACPI_STATUS(status);
}
+ arg.integer.value = sleep_state;
status = acpi_evaluate_object(NULL, METHOD_NAME__WAK, &arg_list, NULL);
if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
ACPI_EXCEPTION((AE_INFO, status, "During Method _WAK"));
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
git-acpi.patch
shrink_slab-handle-bad-shrinkers.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html