diff options
-rw-r--r-- | include/asm-m68k/processor.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/asm-m68k/processor.h b/include/asm-m68k/processor.h index 352799e71f08..8455f778b601 100644 --- a/include/asm-m68k/processor.h +++ b/include/asm-m68k/processor.h | |||
@@ -71,10 +71,10 @@ struct thread_struct { | |||
71 | }; | 71 | }; |
72 | 72 | ||
73 | #define INIT_THREAD { \ | 73 | #define INIT_THREAD { \ |
74 | ksp: sizeof(init_stack) + (unsigned long) init_stack, \ | 74 | .ksp = sizeof(init_stack) + (unsigned long) init_stack, \ |
75 | sr: PS_S, \ | 75 | .sr = PS_S, \ |
76 | fs: __KERNEL_DS, \ | 76 | .fs = __KERNEL_DS, \ |
77 | info: INIT_THREAD_INFO(init_task) \ | 77 | .info = INIT_THREAD_INFO(init_task), \ |
78 | } | 78 | } |
79 | 79 | ||
80 | /* | 80 | /* |