diff options
Diffstat (limited to 'net/8021q/vlanproc.c')
-rw-r--r-- | net/8021q/vlanproc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/8021q/vlanproc.c b/net/8021q/vlanproc.c index 1b72c9854d6f..5e24f72602a1 100644 --- a/net/8021q/vlanproc.c +++ b/net/8021q/vlanproc.c | |||
@@ -81,7 +81,7 @@ static int vlan_seq_open(struct inode *inode, struct file *file) | |||
81 | return seq_open(file, &vlan_seq_ops); | 81 | return seq_open(file, &vlan_seq_ops); |
82 | } | 82 | } |
83 | 83 | ||
84 | static struct file_operations vlan_fops = { | 84 | static const struct file_operations vlan_fops = { |
85 | .owner = THIS_MODULE, | 85 | .owner = THIS_MODULE, |
86 | .open = vlan_seq_open, | 86 | .open = vlan_seq_open, |
87 | .read = seq_read, | 87 | .read = seq_read, |
@@ -98,7 +98,7 @@ static int vlandev_seq_open(struct inode *inode, struct file *file) | |||
98 | return single_open(file, vlandev_seq_show, PDE(inode)->data); | 98 | return single_open(file, vlandev_seq_show, PDE(inode)->data); |
99 | } | 99 | } |
100 | 100 | ||
101 | static struct file_operations vlandev_fops = { | 101 | static const struct file_operations vlandev_fops = { |
102 | .owner = THIS_MODULE, | 102 | .owner = THIS_MODULE, |
103 | .open = vlandev_seq_open, | 103 | .open = vlandev_seq_open, |
104 | .read = seq_read, | 104 | .read = seq_read, |