Commit 12323cac authored by Jan Engelhardt's avatar Jan Engelhardt Committed by Ralf Baechle

[MIPS]: constify function pointer tables

Signed-off-by: default avatarJan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent d4e9cffa
...@@ -48,7 +48,7 @@ static DECLARE_WAIT_QUEUE_HEAD(wq); ...@@ -48,7 +48,7 @@ static DECLARE_WAIT_QUEUE_HEAD(wq);
static struct file_operations fops = static const struct file_operations fops =
{ {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.open = iodev_open, .open = iodev_open,
......
...@@ -90,7 +90,7 @@ static void c_stop(struct seq_file *m, void *v) ...@@ -90,7 +90,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, .start = c_start,
.next = c_next, .next = c_next,
.stop = c_stop, .stop = c_stop,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment