diff options
author | Jan Engelhardt <jengelh@computergmbh.de> | 2008-01-22 22:47:48 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-01-27 23:19:04 -0500 |
commit | 773c7bd69434a356af4363a61889ef975b256e32 (patch) | |
tree | 05afe468f6bd424bed073f61a6c37ba726919f60 /arch/sh | |
parent | 1b1e037a8974801cb3e1da3281ca3a88cbec3de8 (diff) |
sh: constify function pointer tables
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/boards/landisk/gio.c | 2 | ||||
-rw-r--r-- | arch/sh/kernel/setup.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/boards/landisk/gio.c b/arch/sh/boards/landisk/gio.c index a37643d002b2..17025080db35 100644 --- a/arch/sh/boards/landisk/gio.c +++ b/arch/sh/boards/landisk/gio.c | |||
@@ -121,7 +121,7 @@ static int gio_ioctl(struct inode *inode, struct file *filp, | |||
121 | return 0; | 121 | return 0; |
122 | } | 122 | } |
123 | 123 | ||
124 | static struct file_operations gio_fops = { | 124 | static const struct file_operations gio_fops = { |
125 | .owner = THIS_MODULE, | 125 | .owner = THIS_MODULE, |
126 | .open = gio_open, /* open */ | 126 | .open = gio_open, /* open */ |
127 | .release = gio_close, /* release */ | 127 | .release = gio_close, /* release */ |
diff --git a/arch/sh/kernel/setup.c b/arch/sh/kernel/setup.c index 9cf1d2e998bf..855cdf9d85b1 100644 --- a/arch/sh/kernel/setup.c +++ b/arch/sh/kernel/setup.c | |||
@@ -427,7 +427,7 @@ static void *c_next(struct seq_file *m, void *v, loff_t *pos) | |||
427 | static void c_stop(struct seq_file *m, void *v) | 427 | static void c_stop(struct seq_file *m, void *v) |
428 | { | 428 | { |
429 | } | 429 | } |
430 | struct seq_operations cpuinfo_op = { | 430 | const struct seq_operations cpuinfo_op = { |
431 | .start = c_start, | 431 | .start = c_start, |
432 | .next = c_next, | 432 | .next = c_next, |
433 | .stop = c_stop, | 433 | .stop = c_stop, |