Skip to content

Commit

Permalink
[PATCH] m68k: use c99 initializer
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Roman Zippel authored and Linus Torvalds committed Jun 23, 2006
1 parent 98317f1 commit f6c4192
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/asm-m68k/processor.h
Original file line number Diff line number Diff line change
Expand Up @@ -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), \
}

/*
Expand Down

0 comments on commit f6c4192

Please sign in to comment.