diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2005-05-31 18:02:00 +0100 |
---|---|---|
committer | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2005-05-31 18:02:00 +0100 |
commit | 49f680ea7bac5c679fb6374a326a164a3fba07cc (patch) | |
tree | 3555b494abcdbd9fdaa1c3722a81c1923af3c922 /arch/arm/kernel/entry-header.S | |
parent | 791be9b976ba621b21745c30a7fca225fada9110 (diff) | |
download | talos-obmc-linux-49f680ea7bac5c679fb6374a326a164a3fba07cc.tar.gz talos-obmc-linux-49f680ea7bac5c679fb6374a326a164a3fba07cc.zip |
[PATCH] ARM SMP: convert alignment enable
The current vector entry system does not allow for SMP. In
order to work around this, we need to eliminate our reliance
on the fixed save areas, which breaks the way we enable
alignment traps. This patch makes the alignment trap enable
code independent of the way we handle the save areas.
Signed-off-by: Russell King <rmk@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/kernel/entry-header.S')
-rw-r--r-- | arch/arm/kernel/entry-header.S | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/arm/kernel/entry-header.S b/arch/arm/kernel/entry-header.S index a3d40a0e2b04..afef21273963 100644 --- a/arch/arm/kernel/entry-header.S +++ b/arch/arm/kernel/entry-header.S @@ -59,11 +59,10 @@ mov \rd, \rd, lsl #13 .endm - .macro alignment_trap, rbase, rtemp, sym + .macro alignment_trap, rtemp #ifdef CONFIG_ALIGNMENT_TRAP -#define OFF_CR_ALIGNMENT(x) cr_alignment - x - - ldr \rtemp, [\rbase, #OFF_CR_ALIGNMENT(\sym)] + ldr \rtemp, .LCcralign + ldr \rtemp, [\rtemp] mcr p15, 0, \rtemp, c1, c0 #endif .endm |