From: Geert Uytterhoeven MVME16x RTC: Use C99 struct initializers arch/m68k/mvme16x/rtc.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff -puN arch/m68k/mvme16x/rtc.c~68k-352 arch/m68k/mvme16x/rtc.c --- 25/arch/m68k/mvme16x/rtc.c~68k-352 2004-01-01 13:35:11.000000000 -0800 +++ 25-akpm/arch/m68k/mvme16x/rtc.c 2004-01-01 13:35:11.000000000 -0800 @@ -155,9 +155,9 @@ static struct file_operations rtc_fops = static struct miscdevice rtc_dev= { - RTC_MINOR, - "rtc", - &rtc_fops + .minor = RTC_MINOR, + .name = "rtc", + .fops = &rtc_fops }; int __init rtc_MK48T08_init(void) _