vserver 1.9.5.x5
[linux-2.6.git] / arch / i386 / kernel / timers / timer_cyclone.c
index 34f1f3d..f6f1206 100644 (file)
@@ -245,11 +245,15 @@ static void delay_cyclone(unsigned long loops)
 /************************************************************/
 
 /* cyclone timer_opts struct */
-struct timer_opts timer_cyclone = {
+static struct timer_opts timer_cyclone = {
        .name = "cyclone",
-       .init = init_cyclone, 
        .mark_offset = mark_offset_cyclone, 
        .get_offset = get_offset_cyclone,
        .monotonic_clock =      monotonic_clock_cyclone,
        .delay = delay_cyclone,
 };
+
+struct init_timer_opts __initdata timer_cyclone_init = {
+       .init = init_cyclone,
+       .opts = &timer_cyclone,
+};