diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-05-09 13:21:18 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2009-06-12 20:39:52 +0200 | 
| commit | c358d9c3f16571e8f825e81b75eaf32e228cb669 (patch) | |
| tree | 6d71594207568353965053aff1e009eefed80cdb /cpu/arm720t/cpu.c | |
| parent | 10a451cd57cffbca875c97bbd8929059c5627ec6 (diff) | |
| download | olio-uboot-2014.01-c358d9c3f16571e8f825e81b75eaf32e228cb669.tar.xz olio-uboot-2014.01-c358d9c3f16571e8f825e81b75eaf32e228cb669.zip | |
arm: unify interrupt init
all arm init the IRQ stack the same way
so unify it in lib_arm/interrupts.c and then call arch specific interrupt init
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'cpu/arm720t/cpu.c')
| -rw-r--r-- | cpu/arm720t/cpu.c | 7 | 
1 files changed, 0 insertions, 7 deletions
| diff --git a/cpu/arm720t/cpu.c b/cpu/arm720t/cpu.c index 6c40903b7..7a2b9c37b 100644 --- a/cpu/arm720t/cpu.c +++ b/cpu/arm720t/cpu.c @@ -42,13 +42,6 @@ static void cache_flush(void);  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;  } |