This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / arch / i386 / kernel / timers / timer_none.c
index 4ea2f41..394a752 100644 (file)
@@ -1,6 +1,11 @@
 #include <linux/init.h>
 #include <asm/timer.h>
 
+static int __init init_none(char* override)
+{
+       return 0;
+}
+
 static void mark_offset_none(void)
 {
        /* nothing needed */
@@ -32,6 +37,7 @@ static void delay_none(unsigned long loops)
 /* none timer_opts struct */
 struct timer_opts timer_none = {
        .name =         "none",
+       .init =         init_none, 
        .mark_offset =  mark_offset_none, 
        .get_offset =   get_offset_none,
        .monotonic_clock =      monotonic_clock_none,