aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel/proc.c
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@computergmbh.de>2008-01-22 14:42:33 -0500
committerRalf Baechle <ralf@linux-mips.org>2008-01-29 05:15:03 -0500
commit12323cacca2014dcf517d1988fcdb8e44a1f497b (patch)
treee6b6ac1c130cbba6d37c3b5a3959341c8c302de5 /arch/mips/kernel/proc.c
parentd4e9cffa161da806cb4bc9df4a4e49d287156bfa (diff)
[MIPS]: constify function pointer tables
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/proc.c')
-rw-r--r--arch/mips/kernel/proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/proc.c b/arch/mips/kernel/proc.c
index 34dd22838fdb..36f065398243 100644
--- a/arch/mips/kernel/proc.c
+++ b/arch/mips/kernel/proc.c
@@ -90,7 +90,7 @@ static void c_stop(struct seq_file *m, void *v)
90{ 90{
91} 91}
92 92
93struct seq_operations cpuinfo_op = { 93const struct seq_operations cpuinfo_op = {
94 .start = c_start, 94 .start = c_start,
95 .next = c_next, 95 .next = c_next,
96 .stop = c_stop, 96 .stop = c_stop,