commit | 773c7bd69434a356af4363a61889ef975b256e32 | [log] [tgz] |
---|---|---|
author | Jan Engelhardt <jengelh@computergmbh.de> | Wed Jan 23 12:47:48 2008 +0900 |
committer | Paul Mundt <lethal@linux-sh.org> | Mon Jan 28 13:19:04 2008 +0900 |
tree | 05afe468f6bd424bed073f61a6c37ba726919f60 | |
parent | 1b1e037a8974801cb3e1da3281ca3a88cbec3de8 [diff] [blame] |
sh: constify function pointer tables Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
diff --git a/arch/sh/kernel/setup.c b/arch/sh/kernel/setup.c index 9cf1d2e..855cdf9 100644 --- a/arch/sh/kernel/setup.c +++ b/arch/sh/kernel/setup.c
@@ -427,7 +427,7 @@ static void c_stop(struct seq_file *m, void *v) { } -struct seq_operations cpuinfo_op = { +const struct seq_operations cpuinfo_op = { .start = c_start, .next = c_next, .stop = c_stop,