net: file_operations should be const
All instances of file_operations should be const. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
3b401a81c0
commit
5ca1b998d3
@@ -60,7 +60,7 @@ static int xfrm_statistics_seq_open(struct inode *inode, struct file *file)
|
||||
return single_open_net(inode, file, xfrm_statistics_seq_show);
|
||||
}
|
||||
|
||||
static struct file_operations xfrm_statistics_seq_fops = {
|
||||
static const struct file_operations xfrm_statistics_seq_fops = {
|
||||
.owner = THIS_MODULE,
|
||||
.open = xfrm_statistics_seq_open,
|
||||
.read = seq_read,
|
||||
|
Reference in New Issue
Block a user