diff options
Diffstat (limited to 'cpu/arm_intcm')
-rw-r--r-- | cpu/arm_intcm/cpu.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/cpu/arm_intcm/cpu.c b/cpu/arm_intcm/cpu.c index b137f766492..488bd0c5a2d 100644 --- a/cpu/arm_intcm/cpu.c +++ b/cpu/arm_intcm/cpu.c @@ -33,19 +33,8 @@ #include <common.h> #include <command.h> -#ifdef CONFIG_USE_IRQ -DECLARE_GLOBAL_DATA_PTR; -#endif - int cpu_init (void) { - /* - * setup up stacks if necessary - */ -#ifdef CONFIG_USE_IRQ - IRQ_STACK_START = _armboot_start - CONFIG_SYS_MALLOC_LEN - CONFIG_SYS_GBL_DATA_SIZE - 4; - FIQ_STACK_START = IRQ_STACK_START - CONFIG_STACKSIZE_IRQ; -#endif return 0; } |