diff options
author | Wu Zhangjin <wuzhangjin@gmail.com> | 2011-04-24 05:56:59 +0800 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2011-05-10 18:15:26 +0100 |
commit | f850548ef88e5ff9e40bae9e1a7140bef0653e6b (patch) | |
tree | bd903d347cafd3f3fcd9c717b2d90a0894798d6d /arch/mips/power | |
parent | 1e2bbde4afd97b8d6a3f1f6c7bf3b6a9d226ba2e (diff) | |
download | op-kernel-dev-f850548ef88e5ff9e40bae9e1a7140bef0653e6b.zip op-kernel-dev-f850548ef88e5ff9e40bae9e1a7140bef0653e6b.tar.gz |
MIPS: Hibernation: Fixes for PAGE_SIZE >= 64kb
PAGE_SIZE >= 64kb (1 << 16) is too big to be the immediate of the
addiu/daddiu instruction, so, use addu/daddu instruction instead.
The following compiling error is fixed:
AS arch/mips/power/hibernate.o
arch/mips/power/hibernate.S: Assembler messages:
arch/mips/power/hibernate.S:38: Error: expression out of range
make[2]: *** [arch/mips/power/hibernate.o] Error 1
make[1]: *** [arch/mips/power] Error 2
Reported-by: Roman Mamedov <rm@romanrm.ru>
Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>
To: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/2313/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/power')
-rw-r--r-- | arch/mips/power/hibernate.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/power/hibernate.S b/arch/mips/power/hibernate.S index dbb5c7b..f8a751c 100644 --- a/arch/mips/power/hibernate.S +++ b/arch/mips/power/hibernate.S @@ -35,7 +35,7 @@ LEAF(swsusp_arch_resume) 0: PTR_L t1, PBE_ADDRESS(t0) /* source */ PTR_L t2, PBE_ORIG_ADDRESS(t0) /* destination */ - PTR_ADDIU t3, t1, PAGE_SIZE + PTR_ADDU t3, t1, PAGE_SIZE 1: REG_L t8, (t1) REG_S t8, (t2) |