diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-10-11 12:24:25 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-11 14:17:06 -0400 |
commit | 7857a7f59d5d0b4e8c15606a79c0bcdbdef18ab6 (patch) | |
tree | 999604034d009efcdb7c653282429d470014116a | |
parent | 399ad77b9098ed2eb27cbfbeb6449c1caab3c18e (diff) |
[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>
-rw-r--r-- | arch/m32r/kernel/setup.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/m32r/kernel/setup.c b/arch/m32r/kernel/setup.c index 3f35ab3d2dc2..0e7778be33cc 100644 --- a/arch/m32r/kernel/setup.c +++ b/arch/m32r/kernel/setup.c | |||
@@ -369,10 +369,10 @@ static void c_stop(struct seq_file *m, void *v) | |||
369 | } | 369 | } |
370 | 370 | ||
371 | struct seq_operations cpuinfo_op = { | 371 | struct seq_operations cpuinfo_op = { |
372 | start: c_start, | 372 | .start = c_start, |
373 | next: c_next, | 373 | .next = c_next, |
374 | stop: c_stop, | 374 | .stop = c_stop, |
375 | show: show_cpuinfo, | 375 | .show = show_cpuinfo, |
376 | }; | 376 | }; |
377 | #endif /* CONFIG_PROC_FS */ | 377 | #endif /* CONFIG_PROC_FS */ |
378 | 378 | ||