diff options
author | Roman Zippel <zippel@linux-m68k.org> | 2006-06-23 02:04:55 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-23 07:43:00 -0700 |
commit | f6c4192e77dffbc50ee1b9a24a1063ff961aaf04 (patch) | |
tree | 5bf22818ac9f6adb7cd588986effab63fbf550e7 /include/asm-m68k | |
parent | 98317f1271e7fd472983b013c76df6cc15fbef22 (diff) | |
download | talos-op-linux-f6c4192e77dffbc50ee1b9a24a1063ff961aaf04.tar.gz talos-op-linux-f6c4192e77dffbc50ee1b9a24a1063ff961aaf04.zip |
[PATCH] m68k: use c99 initializer
Signed-off-by: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-m68k')
-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 { }; #define INIT_THREAD { \ - ksp: sizeof(init_stack) + (unsigned long) init_stack, \ - sr: PS_S, \ - fs: __KERNEL_DS, \ - info: INIT_THREAD_INFO(init_task) \ + .ksp = sizeof(init_stack) + (unsigned long) init_stack, \ + .sr = PS_S, \ + .fs = __KERNEL_DS, \ + .info = INIT_THREAD_INFO(init_task), \ } /* |