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/ixp/interrupts.c | |
parent | 10a451cd57cffbca875c97bbd8929059c5627ec6 (diff) | |
download | u-boot-imx-c358d9c3f16571e8f825e81b75eaf32e228cb669.zip u-boot-imx-c358d9c3f16571e8f825e81b75eaf32e228cb669.tar.gz u-boot-imx-c358d9c3f16571e8f825e81b75eaf32e228cb669.tar.bz2 |
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/ixp/interrupts.c')
-rw-r--r-- | cpu/ixp/interrupts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/ixp/interrupts.c b/cpu/ixp/interrupts.c index a05e439..06a826a 100644 --- a/cpu/ixp/interrupts.c +++ b/cpu/ixp/interrupts.c @@ -67,7 +67,7 @@ void irq_install_handler (int irq, interrupt_handler_t handle_irq, void *data) IRQ_HANDLER[irq].m_func = handle_irq; } -int interrupt_init (void) +int arch_interrupt_init (void) { int i; |