To: linus, akpm Cc: lkml Subject: [PATCH] M68k math emu C99 M68k math emulator: Use C99 struct initializers --- fp_arith.c | 5 +++-- fp_log.c | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) --- linux-2.6.0/arch/m68k/math-emu/fp_arith.c Sun Apr 6 10:28:29 2003 +++ linux-m68k-2.6.0/arch/m68k/math-emu/fp_arith.c Sun Oct 19 20:06:26 2003 @@ -19,12 +19,13 @@ const struct fp_ext fp_QNaN = { - 0, 0, 0x7fff, { ~0 } + .exp = 0x7fff, + .mant = { .m64 = ~0 } }; const struct fp_ext fp_Inf = { - 0, 0, 0x7fff, { 0 } + .exp = 0x7fff, }; /* let's start with the easy ones */ --- linux-2.6.0/arch/m68k/math-emu/fp_log.c Tue Jul 29 18:18:35 2003 +++ linux-m68k-2.6.0/arch/m68k/math-emu/fp_log.c Sun Oct 19 20:06:41 2003 @@ -19,7 +19,7 @@ static const struct fp_ext fp_one = { - 0, 0, 0x3fff, { 0 } + .exp = 0x3fff, }; extern struct fp_ext *fp_fadd(struct fp_ext *dest, const struct fp_ext *src);