diff options
author | Ben Hutchings <ben@decadent.org.uk> | 2009-07-09 13:54:35 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-07-12 17:20:02 -0400 |
commit | 240c102d9c54fee7fdc87a4ef2fabc7eb539e00a (patch) | |
tree | f176b03249adbb1e3e495a8657cbc864ac76a71c /drivers/net/arm | |
parent | f2ba025b2036e52a176cddcf91b15ac2b10c644a (diff) |
netdev: restore MAC address set and validate operations
alloc_etherdev() used to install default implementations of these
operations, but they 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/arm')
-rw-r--r-- | drivers/net/arm/ixp4xx_eth.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/arm/ixp4xx_eth.c b/drivers/net/arm/ixp4xx_eth.c index 6f42ad728915..87fde32447dd 100644 --- a/drivers/net/arm/ixp4xx_eth.c +++ b/drivers/net/arm/ixp4xx_eth.c | |||
@@ -1142,7 +1142,8 @@ static const struct net_device_ops ixp4xx_netdev_ops = { | |||
1142 | .ndo_start_xmit = eth_xmit, | 1142 | .ndo_start_xmit = eth_xmit, |
1143 | .ndo_set_multicast_list = eth_set_mcast_list, | 1143 | .ndo_set_multicast_list = eth_set_mcast_list, |
1144 | .ndo_do_ioctl = eth_ioctl, | 1144 | .ndo_do_ioctl = eth_ioctl, |
1145 | 1145 | .ndo_set_mac_address = eth_mac_addr, | |
1146 | .ndo_validate_addr = eth_validate_addr, | ||
1146 | }; | 1147 | }; |
1147 | 1148 | ||
1148 | static int __devinit eth_init_one(struct platform_device *pdev) | 1149 | static int __devinit eth_init_one(struct platform_device *pdev) |