Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

[MIPS]: constify function pointer tables

parent d4e9cffa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ static DECLARE_WAIT_QUEUE_HEAD(wq);



static struct file_operations fops =
static const struct file_operations fops =
{
	.owner		= THIS_MODULE,
	.open		= iodev_open,
+1 −1
Original line number Diff line number Diff line
@@ -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,
	.next	= c_next,
	.stop	= c_stop,