aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-highbank
diff options
context:
space:
mode:
authorRob Herring <rob.herring@calxeda.com>2012-01-09 16:41:58 -0500
committerRob Herring <rob.herring@calxeda.com>2012-01-16 09:56:24 -0500
commitadf55f7f5bde24149455efdee8d055645de96006 (patch)
tree4748138823449e080bb280f1078cb88e6b2dc3fa /arch/arm/mach-highbank
parent0a60cb14a58696100481674682eb07ffb2a8eac7 (diff)
ARM: highbank: remove incorrect BSYM usage
BSYM macro is only needed for assembly files and its usage in c files is wrong, so remove it. The linker will correctly set bit 0 for Thumb2 kernels. Signed-off-by: Rob Herring <rob.herring@calxeda.com> Acked-by: Dave Martin <dave.martin@linaro.org>
Diffstat (limited to 'arch/arm/mach-highbank')
-rw-r--r--arch/arm/mach-highbank/highbank.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-highbank/highbank.c b/arch/arm/mach-highbank/highbank.c
index 88660d500f5b..48293f8b4bd3 100644
--- a/arch/arm/mach-highbank/highbank.c
+++ b/arch/arm/mach-highbank/highbank.c
@@ -25,7 +25,6 @@
25#include <linux/smp.h> 25#include <linux/smp.h>
26 26
27#include <asm/cacheflush.h> 27#include <asm/cacheflush.h>
28#include <asm/unified.h>
29#include <asm/smp_scu.h> 28#include <asm/smp_scu.h>
30#include <asm/hardware/arm_timer.h> 29#include <asm/hardware/arm_timer.h>
31#include <asm/hardware/timer-sp.h> 30#include <asm/hardware/timer-sp.h>
@@ -76,7 +75,7 @@ void highbank_set_cpu_jump(int cpu, void *jump_addr)
76#ifdef CONFIG_SMP 75#ifdef CONFIG_SMP
77 cpu = cpu_logical_map(cpu); 76 cpu = cpu_logical_map(cpu);
78#endif 77#endif
79 writel(BSYM(virt_to_phys(jump_addr)), HB_JUMP_TABLE_VIRT(cpu)); 78 writel(virt_to_phys(jump_addr), HB_JUMP_TABLE_VIRT(cpu));
80 __cpuc_flush_dcache_area(HB_JUMP_TABLE_VIRT(cpu), 16); 79 __cpuc_flush_dcache_area(HB_JUMP_TABLE_VIRT(cpu), 16);
81 outer_clean_range(HB_JUMP_TABLE_PHYS(cpu), 80 outer_clean_range(HB_JUMP_TABLE_PHYS(cpu),
82 HB_JUMP_TABLE_PHYS(cpu) + 15); 81 HB_JUMP_TABLE_PHYS(cpu) + 15);