diff options
author | Ben Hutchings <ben@decadent.org.uk> | 2009-07-09 17:59:01 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-07-12 14:20:04 -0700 |
commit | 635ecaa70e862f85f652581305fe0074810893be (patch) | |
tree | ea69b5944526e1dd8f11edd7892134f06a177299 /drivers/net/ehea | |
parent | 240c102d9c54fee7fdc87a4ef2fabc7eb539e00a (diff) | |
download | blackbird-op-linux-635ecaa70e862f85f652581305fe0074810893be.tar.gz blackbird-op-linux-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/ehea')
-rw-r--r-- | drivers/net/ehea/ehea_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ehea/ehea_main.c b/drivers/net/ehea/ehea_main.c index c7d188607c26..e8d46cc1bec2 100644 --- a/drivers/net/ehea/ehea_main.c +++ b/drivers/net/ehea/ehea_main.c @@ -3080,6 +3080,7 @@ static const struct net_device_ops ehea_netdev_ops = { .ndo_poll_controller = ehea_netpoll, #endif .ndo_get_stats = ehea_get_stats, + .ndo_change_mtu = eth_change_mtu, .ndo_set_mac_address = ehea_set_mac_addr, .ndo_validate_addr = eth_validate_addr, .ndo_set_multicast_list = ehea_set_multicast_list, |