diff options
author | Zachary P. Landau <zachary.landau@labxtechnologies.com> | 2006-01-26 17:35:56 -0500 |
---|---|---|
committer | Zachary P. Landau <zachary.landau@labxtechnologies.com> | 2006-01-26 17:35:56 -0500 |
commit | eacbd317757327e8e7f018f5701c950429c4c6ae (patch) | |
tree | f5a0b6fffe7391bd7c2cf3165b0b1c7171a5df84 /cpu/mcf52x2/interrupts.c | |
parent | c4b465f63e3b6fc998526dc217ff988e5c91e667 (diff) | |
download | talos-obmc-uboot-eacbd317757327e8e7f018f5701c950429c4c6ae.tar.gz talos-obmc-uboot-eacbd317757327e8e7f018f5701c950429c4c6ae.zip |
Add support for Freescale M5271 processor
Diffstat (limited to 'cpu/mcf52x2/interrupts.c')
-rw-r--r-- | cpu/mcf52x2/interrupts.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cpu/mcf52x2/interrupts.c b/cpu/mcf52x2/interrupts.c index 868df39194..116747ad3a 100644 --- a/cpu/mcf52x2/interrupts.c +++ b/cpu/mcf52x2/interrupts.c @@ -27,6 +27,11 @@ #include <watchdog.h> #include <asm/processor.h> +#ifdef CONFIG_M5271 +#include <asm/m5271.h> +#include <asm/immap_5271.h> +#endif + #ifdef CONFIG_M5272 #include <asm/m5272.h> #include <asm/immap_5272.h> @@ -171,7 +176,7 @@ int interrupt_init (void) } #endif -#ifdef CONFIG_M5282 +#if defined(CONFIG_M5282) || defined(CONFIG_M5271) int interrupt_init (void) { return 0; |