aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-s3c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/plat-s3c')
-rw-r--r--arch/arm/plat-s3c/include/plat/pm.h5
-rw-r--r--arch/arm/plat-s3c/pm.c3
2 files changed, 5 insertions, 3 deletions
diff --git a/arch/arm/plat-s3c/include/plat/pm.h b/arch/arm/plat-s3c/include/plat/pm.h
index a6104c8055ff..f121a5ac7420 100644
--- a/arch/arm/plat-s3c/include/plat/pm.h
+++ b/arch/arm/plat-s3c/include/plat/pm.h
@@ -46,9 +46,10 @@ extern unsigned long s3c_pm_flags;
46 46
47/* from sleep.S */ 47/* from sleep.S */
48 48
49extern int s3c2410_cpu_save(unsigned long *saveblk); 49extern int s3c_cpu_save(unsigned long *saveblk);
50extern void s3c_cpu_resume(void);
51
50extern void s3c2410_cpu_suspend(void); 52extern void s3c2410_cpu_suspend(void);
51extern void s3c2410_cpu_resume(void);
52 53
53extern unsigned long s3c_sleep_save_phys; 54extern unsigned long s3c_sleep_save_phys;
54 55
diff --git a/arch/arm/plat-s3c/pm.c b/arch/arm/plat-s3c/pm.c
index e82ec628ced1..e320b0ff3852 100644
--- a/arch/arm/plat-s3c/pm.c
+++ b/arch/arm/plat-s3c/pm.c
@@ -280,8 +280,9 @@ static int s3c_pm_enter(suspend_state_t state)
280 * we resume as it saves its own register state, so use the return 280 * we resume as it saves its own register state, so use the return
281 * code to differentiate return from save and return from sleep */ 281 * code to differentiate return from save and return from sleep */
282 282
283 if (s3c2410_cpu_save(regs_save) == 0) { 283 if (s3c_cpu_save(regs_save) == 0) {
284 flush_cache_all(); 284 flush_cache_all();
285 S3C_PMDBG("preparing to sleep\n");
285 pm_cpu_sleep(); 286 pm_cpu_sleep();
286 } 287 }
287 288