aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/tun.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/tun.c')
-rw-r--r--drivers/net/tun.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/tun.c b/drivers/net/tun.c
index 20db30891db0..de8da6dee1b0 100644
--- a/drivers/net/tun.c
+++ b/drivers/net/tun.c
@@ -69,7 +69,7 @@ static int debug;
69/* Network device part of the driver */ 69/* Network device part of the driver */
70 70
71static LIST_HEAD(tun_dev_list); 71static LIST_HEAD(tun_dev_list);
72static struct ethtool_ops tun_ethtool_ops; 72static const struct ethtool_ops tun_ethtool_ops;
73 73
74/* Net device open. */ 74/* Net device open. */
75static int tun_net_open(struct net_device *dev) 75static int tun_net_open(struct net_device *dev)
@@ -856,7 +856,7 @@ static int tun_set_rx_csum(struct net_device *dev, u32 data)
856 return 0; 856 return 0;
857} 857}
858 858
859static struct ethtool_ops tun_ethtool_ops = { 859static const struct ethtool_ops tun_ethtool_ops = {
860 .get_settings = tun_get_settings, 860 .get_settings = tun_get_settings,
861 .get_drvinfo = tun_get_drvinfo, 861 .get_drvinfo = tun_get_drvinfo,
862 .get_msglevel = tun_get_msglevel, 862 .get_msglevel = tun_get_msglevel,