Commit 0d5ee3ed authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] Missing pop-off in arch/i386/kernel/acpi/wakeup.S

From: <gniibe@m17n.org>

There is a missing pop-off after call of acpi_enter_sleep_state.  On
success, acpi_enter_sleep_state never returns, but on failure, it will
cause kernel OOPS.
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent d52dcfe5
......@@ -270,6 +270,7 @@ ENTRY(do_suspend_lowlevel)
call save_registers
pushl $3
call acpi_enter_sleep_state
addl $4,%esp
ret
.p2align 4,,7
ret_point:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment