* [PPC64] C99 initializers in INIT_THREAD
@ 2004-08-17 4:20 David Gibson
0 siblings, 0 replies; only message in thread
From: David Gibson @ 2004-08-17 4:20 UTC (permalink / raw)
To: Andrew Morton
Cc: Paul Mackerras, Anton Blanchard, linux-kernel, linuxppc64-dev
Fairly trivial PPC64 cleanup. This patch makes the ppc64 INIT_THREAD
#define use C99 initializers, which will make it less likely to get
broken if we need to change thread_struct.
Signed-off-by: David Gibson <dwg@au1.ibm.com>
Index: working-2.6/include/asm-ppc64/processor.h
===================================================================
--- working-2.6.orig/include/asm-ppc64/processor.h 2004-08-09 09:52:53.000000000 +1000
+++ working-2.6/include/asm-ppc64/processor.h 2004-08-17 14:13:47.105566560 +1000
@@ -559,12 +559,12 @@
#define INIT_SP (sizeof(init_stack) + (unsigned long) &init_stack)
#define INIT_THREAD { \
- INIT_SP, /* ksp */ \
- (struct pt_regs *)INIT_SP - 1, /* regs */ \
- KERNEL_DS, /*fs*/ \
- {0}, /* fpr */ \
- 0, /* fpscr */ \
- MSR_FE0|MSR_FE1, /* fpexc_mode */ \
+ .ksp = INIT_SP, \
+ .regs = (struct pt_regs *)INIT_SP - 1, \
+ .fs = KERNEL_DS, \
+ .fpr = {0}, \
+ .fpscr = 0, \
+ .fpexc_mode = MSR_FE0|MSR_FE1, \
}
/*
--
David Gibson | For every complex problem there is a
david AT gibson.dropbear.id.au | solution which is simple, neat and
| wrong.
http://www.ozlabs.org/people/dgibson
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-08-17 4:30 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-08-17 4:20 [PPC64] C99 initializers in INIT_THREAD David Gibson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox