mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
[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>
This commit is contained in:
parent
98317f1271
commit
f6c4192e77
1 changed files with 4 additions and 4 deletions
|
@ -71,10 +71,10 @@ struct thread_struct {
|
||||||
};
|
};
|
||||||
|
|
||||||
#define INIT_THREAD { \
|
#define INIT_THREAD { \
|
||||||
ksp: sizeof(init_stack) + (unsigned long) init_stack, \
|
.ksp = sizeof(init_stack) + (unsigned long) init_stack, \
|
||||||
sr: PS_S, \
|
.sr = PS_S, \
|
||||||
fs: __KERNEL_DS, \
|
.fs = __KERNEL_DS, \
|
||||||
info: INIT_THREAD_INFO(init_task) \
|
.info = INIT_THREAD_INFO(init_task), \
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Reference in a new issue