diff options
-rw-r--r-- | drivers/net/xen-netback/interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/xen-netback/interface.c b/drivers/net/xen-netback/interface.c index 0b5c18feb303..b7d41f8c338a 100644 --- a/drivers/net/xen-netback/interface.c +++ b/drivers/net/xen-netback/interface.c | |||
@@ -223,7 +223,7 @@ static void xenvif_get_strings(struct net_device *dev, u32 stringset, u8 * data) | |||
223 | } | 223 | } |
224 | } | 224 | } |
225 | 225 | ||
226 | static struct ethtool_ops xenvif_ethtool_ops = { | 226 | static const struct ethtool_ops xenvif_ethtool_ops = { |
227 | .get_link = ethtool_op_get_link, | 227 | .get_link = ethtool_op_get_link, |
228 | 228 | ||
229 | .get_sset_count = xenvif_get_sset_count, | 229 | .get_sset_count = xenvif_get_sset_count, |
@@ -231,7 +231,7 @@ static struct ethtool_ops xenvif_ethtool_ops = { | |||
231 | .get_strings = xenvif_get_strings, | 231 | .get_strings = xenvif_get_strings, |
232 | }; | 232 | }; |
233 | 233 | ||
234 | static struct net_device_ops xenvif_netdev_ops = { | 234 | static const struct net_device_ops xenvif_netdev_ops = { |
235 | .ndo_start_xmit = xenvif_start_xmit, | 235 | .ndo_start_xmit = xenvif_start_xmit, |
236 | .ndo_get_stats = xenvif_get_stats, | 236 | .ndo_get_stats = xenvif_get_stats, |
237 | .ndo_open = xenvif_open, | 237 | .ndo_open = xenvif_open, |