[PATCH 351] M68k math emu C99

From: Geert Uytterhoeven
Date: Thu Jan 01 2004 - 15:17:03 EST


M68k math emulator: Use C99 struct initializers

--- 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);

Gr{oetje,eeting}s,

Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@xxxxxxxxxxxxxx

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/