diff options
author | Catalin Marinas <catalin.marinas@arm.com> | 2008-10-03 10:09:10 (GMT) |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-10-03 10:32:09 (GMT) |
commit | 000b50259271c9c14f6e175795f5164e1d51d35b (patch) | |
tree | d6c5cde5c74cb84e8ad4d3dc5beefdd131c0c010 /arch/arm/mm | |
parent | 3319f5e51a20f3e3c59ed7dac9fc2d5c89aa2d9f (diff) | |
download | linux-000b50259271c9c14f6e175795f5164e1d51d35b.tar.xz |
[ARM] 5229/3: Replace some ARMv7 opcodes with the instruction name
These instructions were placed in the code directly as opcodes because
early compilers didn't support them. Toolchains supporting ARMv7
understand these instructions and the patch puts the mnemonics back.
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mm')
-rw-r--r-- | arch/arm/mm/proc-v7.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mm/proc-v7.S b/arch/arm/mm/proc-v7.S index dff9677..a67e26f 100644 --- a/arch/arm/mm/proc-v7.S +++ b/arch/arm/mm/proc-v7.S @@ -55,7 +55,7 @@ ENDPROC(cpu_v7_reset) * IRQs are already disabled. */ ENTRY(cpu_v7_do_idle) - .long 0xe320f003 @ ARM V7 WFI instruction + wfi mov pc, lr ENDPROC(cpu_v7_do_idle) |