diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-06-23 00:12:01 +0200 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-07-06 21:52:35 +0200 |
commit | 8d460a573e2a2ac4834636903865a0428ad0e629 (patch) | |
tree | 68ee0470997843b026d783008fb98ff8a16ecf80 /cpu/arm920t/interrupts.c | |
parent | c8badbe500a752f42049e51042767ee62ea714e0 (diff) | |
download | u-boot-imx-8d460a573e2a2ac4834636903865a0428ad0e629.zip u-boot-imx-8d460a573e2a2ac4834636903865a0428ad0e629.tar.gz u-boot-imx-8d460a573e2a2ac4834636903865a0428ad0e629.tar.bz2 |
S3C24x0: extract interrupts from timer
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'cpu/arm920t/interrupts.c')
-rw-r--r-- | cpu/arm920t/interrupts.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/cpu/arm920t/interrupts.c b/cpu/arm920t/interrupts.c index 539eb5c..561083e 100644 --- a/cpu/arm920t/interrupts.c +++ b/cpu/arm920t/interrupts.c @@ -32,16 +32,12 @@ #include <common.h> #include <asm/proc-armv/ptrace.h> +#if defined (CONFIG_ARCH_INTEGRATOR) void do_irq (struct pt_regs *pt_regs) { -#if defined (ARM920_IRQ_CALLBACK) - ARM920_IRQ_CALLBACK(); -#elif defined (CONFIG_ARCH_INTEGRATOR) /* ASSUMED to be a timer interrupt */ /* Just clear it - count handled in */ /* integratorap.c */ *(volatile ulong *)(CONFIG_SYS_TIMERBASE + 0x0C) = 0; -#else -#error do_irq() not defined for this cpu type -#endif } +#endif |