aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/arm
diff options
context:
space:
mode:
authorBen Hutchings <ben@decadent.org.uk>2009-07-09 17:54:35 +0000
committerDavid S. Miller <davem@davemloft.net>2009-07-12 14:20:02 -0700
commit240c102d9c54fee7fdc87a4ef2fabc7eb539e00a (patch)
treef176b03249adbb1e3e495a8657cbc864ac76a71c /drivers/net/arm
parentsit: fix regression: do not release skb->dst before xmit (diff)
downloadlinux-dev-240c102d9c54fee7fdc87a4ef2fabc7eb539e00a.tar.xz
linux-dev-240c102d9c54fee7fdc87a4ef2fabc7eb539e00a.zip
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.c3
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 = {
.ndo_start_xmit = eth_xmit,
.ndo_set_multicast_list = eth_set_mcast_list,
.ndo_do_ioctl = eth_ioctl,
-
+ .ndo_set_mac_address = eth_mac_addr,
+ .ndo_validate_addr = eth_validate_addr,
};
static int __devinit eth_init_one(struct platform_device *pdev)