diff options
author | Catalin Marinas <catalin.marinas@arm.com> | 2008-10-03 06:09:10 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-10-03 06:32:09 -0400 |
commit | 000b50259271c9c14f6e175795f5164e1d51d35b (patch) | |
tree | d6c5cde5c74cb84e8ad4d3dc5beefdd131c0c010 /arch/arm/mm | |
parent | 3319f5e51a20f3e3c59ed7dac9fc2d5c89aa2d9f (diff) |
[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 dff967784626..a67e26f3dce2 100644 --- a/arch/arm/mm/proc-v7.S +++ b/arch/arm/mm/proc-v7.S | |||
@@ -55,7 +55,7 @@ ENDPROC(cpu_v7_reset) | |||
55 | * IRQs are already disabled. | 55 | * IRQs are already disabled. |
56 | */ | 56 | */ |
57 | ENTRY(cpu_v7_do_idle) | 57 | ENTRY(cpu_v7_do_idle) |
58 | .long 0xe320f003 @ ARM V7 WFI instruction | 58 | wfi |
59 | mov pc, lr | 59 | mov pc, lr |
60 | ENDPROC(cpu_v7_do_idle) | 60 | ENDPROC(cpu_v7_do_idle) |
61 | 61 | ||