upgrade to linux 2.6.10-1.12_FC2
[linux-2.6.git] / arch / arm / mach-integrator / integrator_ap.c
index b07e39d..ad66771 100644 (file)
@@ -40,7 +40,9 @@
 #include <asm/mach/flash.h>
 #include <asm/mach/irq.h>
 #include <asm/mach/map.h>
+#include <asm/mach/time.h>
 
+#include "common.h"
 
 /* 
  * All IO addresses are mapped onto VA 0xFFFx.xxxx, where x.xxxx
@@ -281,17 +283,22 @@ static void __init ap_init(void)
        }
 }
 
-static void ap_time_init(void)
+static void __init ap_init_timer(void)
 {
        integrator_time_init(1000000 * TICKS_PER_uSEC / HZ, 0);
 }
 
+static struct sys_timer ap_timer = {
+       .init           = ap_init_timer,
+       .offset         = integrator_gettimeoffset,
+};
+
 MACHINE_START(INTEGRATOR, "ARM-Integrator")
        MAINTAINER("ARM Ltd/Deep Blue Solutions Ltd")
        BOOT_MEM(0x00000000, 0x16000000, 0xf1600000)
        BOOT_PARAMS(0x00000100)
        MAPIO(ap_map_io)
        INITIRQ(ap_init_irq)
-       INITTIME(ap_time_init)
+       .timer          = &ap_timer,
        INIT_MACHINE(ap_init)
 MACHINE_END