diff options
author | David S. Miller <davem@davemloft.net> | 2009-03-24 00:29:24 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-03-24 00:29:24 +0300 |
commit | dac4696a4b4f6823efda32f92dbc236a918c376f (patch) | |
tree | f3a81c97d46b17489bbbbf00b548afc74842bf50 /drivers/net/sunqe.c | |
parent | 8be7cdccacfbfc707e7370cad9bb168defed636f (diff) | |
download | linux-dac4696a4b4f6823efda32f92dbc236a918c376f.tar.xz |
myri_sbus/sunbmac/sunlance/sunqe: Add missing net_device_ops entries.
Noticed by Stephen Hemminger.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sunqe.c')
-rw-r--r-- | drivers/net/sunqe.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/sunqe.c b/drivers/net/sunqe.c index dd4757d087eb..c6ec61e0accf 100644 --- a/drivers/net/sunqe.c +++ b/drivers/net/sunqe.c @@ -835,6 +835,9 @@ static const struct net_device_ops qec_ops = { .ndo_start_xmit = qe_start_xmit, .ndo_set_multicast_list = qe_set_multicast, .ndo_tx_timeout = qe_tx_timeout, + .ndo_change_mtu = eth_change_mtu, + .ndo_set_mac_address = eth_mac_addr, + .ndo_validate_addr = eth_validate_addr, }; static int __devinit qec_ether_init(struct of_device *op) |