[PATCH 349] BVME6000 RTC C99

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


BVME6000 RTC: Use C99 struct initializers

--- linux-2.6.0/arch/m68k/bvme6000/rtc.c Thu Jan 2 12:53:56 2003
+++ linux-m68k-2.6.0/arch/m68k/bvme6000/rtc.c Sun Oct 5 12:34:20 2003
@@ -164,11 +164,10 @@
.release = rtc_release,
};

-static struct miscdevice rtc_dev=
-{
- RTC_MINOR,
- "rtc",
- &rtc_fops
+static struct miscdevice rtc_dev = {
+ .minor = RTC_MINOR,
+ .name = "rtc",
+ .fops = &rtc_fops
};

int __init rtc_DP8570A_init(void)

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/