diff options
author | Greg Ungerer <gerg@uclinux.org> | 2009-06-10 23:05:00 -0400 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2009-06-10 23:09:11 -0400 |
commit | 9d4f94135385b565e2ce4a37f71b53d0fd3664e8 (patch) | |
tree | 690ad6fa2fa08793c861745db9d1a35a4648fb34 /arch/m68k | |
parent | 4f308e35a9bde9d6b671e8409157edb9065f117c (diff) |
m68knommu: enumerate INIT_THREAD fields properly
Use proper field value setting init INIT_THREAD macro.
Fixes this:
arch/m68knommu/kernel/init_task.c:27: warning: excess elements in array initializer
arch/m68knommu/kernel/init_task.c:27: warning: (near initialization for ‘init_task.thread.fpstate’)
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/include/asm/processor_no.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/m68k/include/asm/processor_no.h b/arch/m68k/include/asm/processor_no.h index 91cba18acdd3..7a1e0ba35f5a 100644 --- a/arch/m68k/include/asm/processor_no.h +++ b/arch/m68k/include/asm/processor_no.h | |||
@@ -72,10 +72,10 @@ struct thread_struct { | |||
72 | unsigned char fpstate[FPSTATESIZE]; /* floating point state */ | 72 | unsigned char fpstate[FPSTATESIZE]; /* floating point state */ |
73 | }; | 73 | }; |
74 | 74 | ||
75 | #define INIT_THREAD { \ | 75 | #define INIT_THREAD { \ |
76 | sizeof(init_stack) + (unsigned long) init_stack, 0, \ | 76 | .ksp = sizeof(init_stack) + (unsigned long) init_stack, \ |
77 | PS_S, __KERNEL_DS, \ | 77 | .sr = PS_S, \ |
78 | {0, 0}, 0, {0,}, {0, 0, 0}, {0,}, \ | 78 | .fs = __KERNEL_DS, \ |
79 | } | 79 | } |
80 | 80 | ||
81 | /* | 81 | /* |