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 /include/asm-arm/u-boot-arm.h | |
parent | 10a451cd57cffbca875c97bbd8929059c5627ec6 (diff) |
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 'include/asm-arm/u-boot-arm.h')
-rw-r--r-- | include/asm-arm/u-boot-arm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asm-arm/u-boot-arm.h b/include/asm-arm/u-boot-arm.h index 238d4085419..76f1ffa5a2c 100644 --- a/include/asm-arm/u-boot-arm.h +++ b/include/asm-arm/u-boot-arm.h @@ -58,6 +58,7 @@ void setup_revision_tag (struct tag **params); int setenv (char *, char *); /* cpu/.../interrupt.c */ +int arch_interrupt_init (void); void reset_timer_masked (void); ulong get_timer_masked (void); void udelay_masked (unsigned long usec); |