VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / include / asm-arm / mach / arch.h
index d751faf..5c37b70 100644 (file)
@@ -8,12 +8,6 @@
  * published by the Free Software Foundation.
  */
 
-/*
- * The size of struct machine_desc
- *   (for assembler code)
- */
-#define SIZEOF_MACHINE_DESC    52
-
 #ifndef __ASSEMBLY__
 
 struct tag;
@@ -45,6 +39,7 @@ struct machine_desc {
                                         struct meminfo *);
        void                    (*map_io)(void);/* IO mapping function  */
        void                    (*init_irq)(void);
+       void                    (*init_time)(void);
        void                    (*init_machine)(void);
 };
 
@@ -87,6 +82,9 @@ const struct machine_desc __mach_desc_##_type \
 #define INITIRQ(_func)                         \
        .init_irq       = _func,
 
+#define INITTIME(_func)                                \
+       .init_time      = _func,
+
 #define INIT_MACHINE(_func)                    \
        .init_machine   = _func,