diff options
Diffstat (limited to 'include/asm-m68k/processor.h')
-rw-r--r-- | include/asm-m68k/processor.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/include/asm-m68k/processor.h b/include/asm-m68k/processor.h index 7982285e84ed..8455f778b601 100644 --- a/include/asm-m68k/processor.h +++ b/include/asm-m68k/processor.h | |||
@@ -13,7 +13,6 @@ | |||
13 | */ | 13 | */ |
14 | #define current_text_addr() ({ __label__ _l; _l: &&_l;}) | 14 | #define current_text_addr() ({ __label__ _l; _l: &&_l;}) |
15 | 15 | ||
16 | #include <linux/config.h> | ||
17 | #include <linux/thread_info.h> | 16 | #include <linux/thread_info.h> |
18 | #include <asm/segment.h> | 17 | #include <asm/segment.h> |
19 | #include <asm/fpu.h> | 18 | #include <asm/fpu.h> |
@@ -72,10 +71,10 @@ struct thread_struct { | |||
72 | }; | 71 | }; |
73 | 72 | ||
74 | #define INIT_THREAD { \ | 73 | #define INIT_THREAD { \ |
75 | ksp: sizeof(init_stack) + (unsigned long) init_stack, \ | 74 | .ksp = sizeof(init_stack) + (unsigned long) init_stack, \ |
76 | sr: PS_S, \ | 75 | .sr = PS_S, \ |
77 | fs: __KERNEL_DS, \ | 76 | .fs = __KERNEL_DS, \ |
78 | info: INIT_THREAD_INFO(init_task) \ | 77 | .info = INIT_THREAD_INFO(init_task), \ |
79 | } | 78 | } |
80 | 79 | ||
81 | /* | 80 | /* |