diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-06-13 16:03:19 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-06-24 08:48:44 +0100 |
commit | c4ac82c07dd3e4fb5d65a52ffa94e302f80b609d (patch) | |
tree | ca3c339e5f93f5de18f7778ebe4ac678e2fbe8ed /arch/arm/plat-s3c24xx | |
parent | 34c79de6b2ea5bc5734d970851fb966b49d55a17 (diff) | |
download | blackbird-obmc-linux-c4ac82c07dd3e4fb5d65a52ffa94e302f80b609d.tar.gz blackbird-obmc-linux-c4ac82c07dd3e4fb5d65a52ffa94e302f80b609d.zip |
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')
-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 @@ */ ENTRY(s3c_cpu_save) - stmfd sp!, { r4 - r12, lr } adr r3, BSYM(s3c24xx_finish_suspend) - bl cpu_suspend - ldmfd sp!, { r4 - r12, pc } + b cpu_suspend s3c24xx_finish_suspend: @@ jump to final code to send system to sleep |