mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
microblaze: Use standard interrupt_init() function
Do not use microblaze specific interrupt init function. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
7c6814f184
commit
2c7c32fa7f
3 changed files with 2 additions and 4 deletions
|
@ -109,7 +109,7 @@ static void intc_init(void)
|
|||
intc->iar, intc->mer);
|
||||
}
|
||||
|
||||
int interrupts_init(void)
|
||||
int interrupt_init(void)
|
||||
{
|
||||
int i;
|
||||
|
||||
|
|
|
@ -34,5 +34,3 @@ struct irq_action {
|
|||
*/
|
||||
int install_interrupt_handler(int irq, interrupt_handler_t *hdlr,
|
||||
void *arg);
|
||||
|
||||
int interrupts_init(void);
|
||||
|
|
|
@ -55,7 +55,7 @@ init_fnc_t *init_sequence[] = {
|
|||
#endif
|
||||
display_banner,
|
||||
#ifndef CONFIG_SPL_BUILD
|
||||
interrupts_init,
|
||||
interrupt_init,
|
||||
timer_init,
|
||||
#endif
|
||||
NULL,
|
||||
|
|
Loading…
Reference in a new issue