From: Rafael J. Wysocki Date: Wed, 7 Jul 2010 21:43:18 +0000 (+0200) Subject: PM / Hibernate: Fix hibernation_platform_enter() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=f6f71f187518477cecc01cd887933b5da19585e6;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git PM / Hibernate: Fix hibernation_platform_enter() The hibernation_platform_enter() function calls dpm_suspend_noirq() instead of dpm_resume_noirq() by mistake. Fix this. Signed-off-by: Rafael J. Wysocki Acked-by: Len Brown --- diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c index f61202916631..d97ba8615c30 100644 --- a/kernel/power/hibernate.c +++ b/kernel/power/hibernate.c @@ -530,7 +530,7 @@ int hibernation_platform_enter(void) Platform_finish: hibernation_ops->finish(); - dpm_suspend_noirq(PMSG_RESTORE); + dpm_resume_noirq(PMSG_RESTORE); Resume_devices: entering_platform_hibernation = false;