arm: remove cpu_init
[oweals/u-boot.git] / cpu / arm920t / interrupts.c
index c9cd066c9003dc7113f59f40721983a5926bcfd0..ea24cdf68bd1c647b3db15300ea91669f5e9e225 100644 (file)
@@ -8,7 +8,7 @@
  * Alex Zuepke <azu@sysgo.de>
  *
  * (C) Copyright 2002
- * Gary Jennejohn, DENX Software Engineering, <gj@denx.de>
+ * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
  *
  * See file CREDITS for list of people who contributed to this
  * project.
@@ -30,7 +30,6 @@
  */
 
 #include <common.h>
-#include <arm920t.h>
 
 #ifdef CONFIG_USE_IRQ
 #include <asm/proc-armv/ptrace.h>
@@ -42,7 +41,7 @@ void do_irq (struct pt_regs *pt_regs)
        /* ASSUMED to be a timer interrupt  */
        /* Just clear it - count handled in */
        /* integratorap.c                   */
-       *(volatile ulong *)(CFG_TIMERBASE + 0x0C) = 0;
+       *(volatile ulong *)(CONFIG_SYS_TIMERBASE + 0x0C) = 0;
 #else
 #error do_irq() not defined for this cpu type
 #endif