[SPARC]: Constify function pointer tables.
authorJan Engelhardt <jengelh@computergmbh.de>
Wed, 23 Jan 2008 02:29:20 +0000 (18:29 -0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 23 Jan 2008 02:29:20 +0000 (18:29 -0800)
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
arch/sparc/kernel/setup.c
arch/sparc64/kernel/setup.c
arch/sparc64/solaris/socksys.c
fs/openpromfs/inode.c

index f822838..d07bc74 100644 (file)
@@ -379,7 +379,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,
index 0f5be82..a813441 100644 (file)
@@ -421,7 +421,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,
index 7736411..5f06418 100644 (file)
@@ -54,7 +54,7 @@ extern void mykfree(void *);
 
 static unsigned int (*sock_poll)(struct file *, poll_table *);
 
-static struct file_operations socksys_file_ops = {
+static const struct file_operations socksys_file_ops = {
        /* Currently empty */
 };
 
index d881738..6b7ff16 100644 (file)
@@ -131,7 +131,7 @@ static void property_stop(struct seq_file *f, void *v)
        /* Nothing to do */
 }
 
-static struct seq_operations property_op = {
+static const struct seq_operations property_op = {
        .start          = property_start,
        .next           = property_next,
        .stop           = property_stop,