mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-04 13:21:45 +00:00
[PATCH] m32r: C99 initializers in setup.c
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
399ad77b90
commit
7857a7f59d
1 changed files with 4 additions and 4 deletions
|
@ -369,10 +369,10 @@ static void c_stop(struct seq_file *m, void *v)
|
||||||
}
|
}
|
||||||
|
|
||||||
struct seq_operations cpuinfo_op = {
|
struct seq_operations cpuinfo_op = {
|
||||||
start: c_start,
|
.start = c_start,
|
||||||
next: c_next,
|
.next = c_next,
|
||||||
stop: c_stop,
|
.stop = c_stop,
|
||||||
show: show_cpuinfo,
|
.show = show_cpuinfo,
|
||||||
};
|
};
|
||||||
#endif /* CONFIG_PROC_FS */
|
#endif /* CONFIG_PROC_FS */
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue