Skip to content
Snippets Groups Projects
Commit 7a17e759 authored by TsiChung Liew's avatar TsiChung Liew Committed by John Rigby
Browse files

Update header file and removed interrupt_init()


Replace immap_5329.h and m5329.h with immap.h. Removed interrupt_init() and placed it in interrupts.c

Signed-off-by: default avatarTsiChungLiew <Tsi-Chung.Liew@freescale.com>
parent 3b635492
No related branches found
No related tags found
No related merge requests found
......@@ -29,8 +29,7 @@
#include <watchdog.h>
#include <command.h>
#include <asm/immap_5329.h>
#include <asm/m5329.h>
#include <asm/immap.h>
int do_reset(cmd_tbl_t * cmdtp, bd_t * bd, int flag, int argc, char *argv[])
{
......@@ -117,18 +116,4 @@ int watchdog_init(void)
return (0);
}
#endif /* #ifdef CONFIG_WATCHDOG */
#ifdef CONFIG_MCFINTC
int interrupt_init(void)
{
volatile int0_t *intp = (int0_t *) (CFG_INTR_BASE);
/* Make sure all interrupts are disabled */
intp->imrh0 |= 0xFFFFFFFF;
intp->imrl0 |= 0xFFFFFFFF;
enable_interrupts();
return 0;
}
#endif /* CONFIG_MCFINTC */
#endif /* CONFIG_WATCHDOG */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment