diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-06-13 11:03:19 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-06-24 03:48:44 -0400 |
commit | c4ac82c07dd3e4fb5d65a52ffa94e302f80b609d (patch) | |
tree | ca3c339e5f93f5de18f7778ebe4ac678e2fbe8ed /arch/arm/plat-s3c24xx/sleep.S | |
parent | 34c79de6b2ea5bc5734d970851fb966b49d55a17 (diff) |
ARM: pm: plat-s3c24xx: cleanup s3c_cpu_save
s3c_cpu_save does not need to save any registers with the new
cpu_suspend calling convention. Remove these redundant instructions.
Tested-by: Kukjin Kim <kgene.kim@samsung.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/plat-s3c24xx/sleep.S')
-rw-r--r-- | arch/arm/plat-s3c24xx/sleep.S | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/arm/plat-s3c24xx/sleep.S b/arch/arm/plat-s3c24xx/sleep.S index f822e6282dd4..6ada459498a8 100644 --- a/arch/arm/plat-s3c24xx/sleep.S +++ b/arch/arm/plat-s3c24xx/sleep.S | |||
@@ -48,10 +48,8 @@ | |||
48 | */ | 48 | */ |
49 | 49 | ||
50 | ENTRY(s3c_cpu_save) | 50 | ENTRY(s3c_cpu_save) |
51 | stmfd sp!, { r4 - r12, lr } | ||
52 | adr r3, BSYM(s3c24xx_finish_suspend) | 51 | adr r3, BSYM(s3c24xx_finish_suspend) |
53 | bl cpu_suspend | 52 | b cpu_suspend |
54 | ldmfd sp!, { r4 - r12, pc } | ||
55 | 53 | ||
56 | s3c24xx_finish_suspend: | 54 | s3c24xx_finish_suspend: |
57 | @@ jump to final code to send system to sleep | 55 | @@ jump to final code to send system to sleep |