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

Commit 8a45eb31 authored by Jan Engelhardt's avatar Jan Engelhardt Committed by Ingo Molnar
Browse files

x86: constify function pointer tables

parent 42d545c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -188,7 +188,7 @@ static void *c_next(struct seq_file *m, void *v, loff_t *pos)
static void c_stop(struct seq_file *m, void *v)
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,
+1 −1
Original line number Original line Diff line number Diff line
@@ -1251,7 +1251,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,