Subject: [PATCH] m68k: constify function pointer tables From: Jan Engelhardt m68k: constify function pointer tables (struct seq_operations) Signed-off-by: Jan Engelhardt Signed-off-by: Geert Uytterhoeven --- arch/m68k/kernel/setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/arch/m68k/kernel/setup.c +++ b/arch/m68k/kernel/setup.c @@ -449,7 +449,7 @@ static void *c_next(struct seq_file *m, 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,