Commit 50b53813 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] MVME16x RTC C99

From: Geert Uytterhoeven <geert@linux-m68k.org>

MVME16x RTC: Use C99 struct initializers
parent 30f7bbd3
...@@ -155,9 +155,9 @@ static struct file_operations rtc_fops = { ...@@ -155,9 +155,9 @@ static struct file_operations rtc_fops = {
static struct miscdevice rtc_dev= static struct miscdevice rtc_dev=
{ {
RTC_MINOR, .minor = RTC_MINOR,
"rtc", .name = "rtc",
&rtc_fops .fops = &rtc_fops
}; };
int __init rtc_MK48T08_init(void) int __init rtc_MK48T08_init(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment