[ARM] constify function pointer tables

Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by Jan Engelhardt and committed by Russell King 2ffd6e18 72e7ae81

+3 -3
+1 -1
arch/arm/kernel/setup.c
··· 1001 1001 { 1002 1002 } 1003 1003 1004 - struct seq_operations cpuinfo_op = { 1004 + const struct seq_operations cpuinfo_op = { 1005 1005 .start = c_start, 1006 1006 .next = c_next, 1007 1007 .stop = c_stop,
+2 -2
arch/arm/mach-davinci/clock.c
··· 290 290 return 0; 291 291 } 292 292 293 - static struct seq_operations davinci_ck_op = { 293 + static const struct seq_operations davinci_ck_op = { 294 294 .start = davinci_ck_start, 295 295 .next = davinci_ck_next, 296 296 .stop = davinci_ck_stop, ··· 302 302 return seq_open(file, &davinci_ck_op); 303 303 } 304 304 305 - static struct file_operations proc_davinci_ck_operations = { 305 + static const struct file_operations proc_davinci_ck_operations = { 306 306 .open = davinci_ck_open, 307 307 .read = seq_read, 308 308 .llseek = seq_lseek,