From: Geert Uytterhoeven MVME16x RTC: Use C99 struct initializers --- 25-akpm/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 Thu Jan 8 15:37:34 2004 +++ 25-akpm/arch/m68k/mvme16x/rtc.c Thu Jan 8 15:37:34 2004 @@ -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) _