[NET]: Make all initialized struct seq_operations const.
Make all initialized struct seq_operations in net/ const Signed-off-by: Philippe De Muyter <phdm@macqel.be> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
3be550f34b
commit
56b3d975bb
@@ -1454,7 +1454,7 @@ static int rose_info_show(struct seq_file *seq, void *v)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct seq_operations rose_info_seqops = {
|
||||
static const struct seq_operations rose_info_seqops = {
|
||||
.start = rose_info_start,
|
||||
.next = rose_info_next,
|
||||
.stop = rose_info_stop,
|
||||
|
@@ -1118,7 +1118,7 @@ static int rose_node_show(struct seq_file *seq, void *v)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct seq_operations rose_node_seqops = {
|
||||
static const struct seq_operations rose_node_seqops = {
|
||||
.start = rose_node_start,
|
||||
.next = rose_node_next,
|
||||
.stop = rose_node_stop,
|
||||
@@ -1200,7 +1200,7 @@ static int rose_neigh_show(struct seq_file *seq, void *v)
|
||||
}
|
||||
|
||||
|
||||
static struct seq_operations rose_neigh_seqops = {
|
||||
static const struct seq_operations rose_neigh_seqops = {
|
||||
.start = rose_neigh_start,
|
||||
.next = rose_neigh_next,
|
||||
.stop = rose_neigh_stop,
|
||||
@@ -1284,7 +1284,7 @@ static int rose_route_show(struct seq_file *seq, void *v)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct seq_operations rose_route_seqops = {
|
||||
static const struct seq_operations rose_route_seqops = {
|
||||
.start = rose_route_start,
|
||||
.next = rose_route_next,
|
||||
.stop = rose_route_stop,
|
||||
|
Reference in New Issue
Block a user