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

Commit 4101dec9 authored by Jan Engelhardt's avatar Jan Engelhardt Committed by David S. Miller
Browse files

net: constify VFTs

parent 991990a1
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -3369,7 +3369,7 @@ static int bond_info_seq_show(struct seq_file *seq, void *v)
	return 0;
	return 0;
}
}


static struct seq_operations bond_info_seq_ops = {
static const struct seq_operations bond_info_seq_ops = {
	.start = bond_info_seq_start,
	.start = bond_info_seq_start,
	.next  = bond_info_seq_next,
	.next  = bond_info_seq_next,
	.stop  = bond_info_seq_stop,
	.stop  = bond_info_seq_stop,
+1 −1
Original line number Original line Diff line number Diff line
@@ -443,7 +443,7 @@ static int bpq_seq_show(struct seq_file *seq, void *v)
	return 0;
	return 0;
}
}


static struct seq_operations bpq_seqops = {
static const struct seq_operations bpq_seqops = {
	.start = bpq_seq_start,
	.start = bpq_seq_start,
	.next = bpq_seq_next,
	.next = bpq_seq_next,
	.stop = bpq_seq_stop,
	.stop = bpq_seq_stop,
+1 −1
Original line number Original line Diff line number Diff line
@@ -2074,7 +2074,7 @@ static int scc_net_seq_show(struct seq_file *seq, void *v)
        return 0;
        return 0;
}
}


static struct seq_operations scc_net_seq_ops = {
static const struct seq_operations scc_net_seq_ops = {
	.start  = scc_net_seq_start,
	.start  = scc_net_seq_start,
	.next   = scc_net_seq_next,
	.next   = scc_net_seq_next,
	.stop   = scc_net_seq_stop,
	.stop   = scc_net_seq_stop,
+1 −1
Original line number Original line Diff line number Diff line
@@ -783,7 +783,7 @@ static int yam_seq_show(struct seq_file *seq, void *v)
	return 0;
	return 0;
}
}


static struct seq_operations yam_seqops = {
static const struct seq_operations yam_seqops = {
	.start = yam_seq_start,
	.start = yam_seq_start,
	.next = yam_seq_next,
	.next = yam_seq_next,
	.stop = yam_seq_stop,
	.stop = yam_seq_stop,
+1 −1
Original line number Original line Diff line number Diff line
@@ -1030,7 +1030,7 @@ static void pppoe_seq_stop(struct seq_file *seq, void *v)
	read_unlock_bh(&pppoe_hash_lock);
	read_unlock_bh(&pppoe_hash_lock);
}
}


static struct seq_operations pppoe_seq_ops = {
static const struct seq_operations pppoe_seq_ops = {
	.start		= pppoe_seq_start,
	.start		= pppoe_seq_start,
	.next		= pppoe_seq_next,
	.next		= pppoe_seq_next,
	.stop		= pppoe_seq_stop,
	.stop		= pppoe_seq_stop,
Loading