Commit aad294dc authored by Greg Ungerer's avatar Greg Ungerer Committed by Linus Torvalds

[PATCH] use C99 initializers in m68knommu setup.c

parent f7f3bff6
......@@ -343,10 +343,10 @@ static void c_stop(struct seq_file *m, void *v)
}
struct seq_operations cpuinfo_op = {
start: c_start,
next: c_next,
stop: c_stop,
show: show_cpuinfo,
.start = c_start,
.next = c_next,
.stop = c_stop,
.show = show_cpuinfo,
};
void arch_gettod(int *year, int *mon, int *day, int *hour,
......
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