diff options
| author | Paul Mackerras <paulus@samba.org> | 2003-01-05 20:29:47 +1100 |
|---|---|---|
| committer | Paul Mackerras <paulus@samba.org> | 2003-01-05 20:29:47 +1100 |
| commit | 751f60377eb550dd4d084d4cd1ea673aeab47e62 (patch) | |
| tree | 5a1a57bd1d714003a3809be846980bec6f985f7f /include | |
| parent | 4a4b6d893ee5e15af113f8564e0dfe558e1c90d6 (diff) | |
PPC32: Use C99 initializer syntax in INIT_THREAD
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-ppc/processor.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-ppc/processor.h b/include/asm-ppc/processor.h index 159f20f2a73e..6c7193953195 100644 --- a/include/asm-ppc/processor.h +++ b/include/asm-ppc/processor.h @@ -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, \ } /* |
