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 = {
static struct miscdevice rtc_dev=
{
RTC_MINOR,
"rtc",
&rtc_fops
.minor = RTC_MINOR,
.name = "rtc",
.fops = &rtc_fops
};
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