linux 2.6.16.38 w/ vs2.0.3-rc1
[linux-2.6.git] / include / asm-um / thread_info.h
index 261e2f4..17b6b07 100644 (file)
@@ -8,6 +8,7 @@
 
 #ifndef __ASSEMBLY__
 
+#include <linux/config.h>
 #include <asm/processor.h>
 #include <asm/types.h>
 
@@ -26,14 +27,14 @@ struct thread_info {
 
 #define INIT_THREAD_INFO(tsk)                  \
 {                                              \
-       .task =         &tsk,                   \
-       .exec_domain =  &default_exec_domain,   \
-       .flags =                0,              \
-       .cpu =          0,                      \
-       .preempt_count =        1,              \
-       .addr_limit =   KERNEL_DS,              \
-       .restart_block =  {                     \
-               .fn =  do_no_restart_syscall,   \
+       task:           &tsk,                   \
+       exec_domain:    &default_exec_domain,   \
+       flags:          0,                      \
+       cpu:            0,                      \
+       preempt_count:  1,                      \
+       addr_limit:     KERNEL_DS,              \
+       restart_block:  {                       \
+               fn:  do_no_restart_syscall,     \
        },                                      \
 }