Commit 751f6037 authored by Paul Mackerras's avatar Paul Mackerras

PPC32: Use C99 initializer syntax in INIT_THREAD

parent 4a4b6d89
......@@ -655,9 +655,9 @@ struct thread_struct {
#define INIT_SP (sizeof(init_stack) + (unsigned long) &init_stack)
#define INIT_THREAD { \
ksp: INIT_SP, \
fs: KERNEL_DS, \
pgdir: swapper_pg_dir, \
.ksp = INIT_SP, \
.fs = KERNEL_DS, \
.pgdir = swapper_pg_dir, \
}
/*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment