aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/sunvnet.c
diff options
context:
space:
mode:
authorBen Hutchings <ben@decadent.org.uk>2009-07-09 17:59:01 +0000
committerDavid S. Miller <davem@davemloft.net>2009-07-12 14:20:04 -0700
commit635ecaa70e862f85f652581305fe0074810893be (patch)
treeea69b5944526e1dd8f11edd7892134f06a177299 /drivers/net/sunvnet.c
parentnetdev: restore MAC address set and validate operations (diff)
downloadlinux-dev-635ecaa70e862f85f652581305fe0074810893be.tar.xz
linux-dev-635ecaa70e862f85f652581305fe0074810893be.zip
netdev: restore MTU change operation
alloc_etherdev() used to install a default implementation of this operation, but it must now be explicitly installed in struct net_device_ops. Signed-off-by: Ben Hutchings <ben@decadent.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sunvnet.c')
-rw-r--r--drivers/net/sunvnet.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/sunvnet.c b/drivers/net/sunvnet.c
index bc74db0d12f3..f1e5e4542c2a 100644
--- a/drivers/net/sunvnet.c
+++ b/drivers/net/sunvnet.c
@@ -1016,6 +1016,7 @@ static const struct net_device_ops vnet_ops = {
.ndo_open = vnet_open,
.ndo_stop = vnet_close,
.ndo_set_multicast_list = vnet_set_rx_mode,
+ .ndo_change_mtu = eth_change_mtu,
.ndo_set_mac_address = vnet_set_mac_addr,
.ndo_validate_addr = eth_validate_addr,
.ndo_tx_timeout = vnet_tx_timeout,