summaryrefslogtreecommitdiffstats
path: root/drivers/net/hp-plus.c
diff options
context:
space:
mode:
authorStephen Hemminger2009-01-09 12:13:14 +0100
committerDavid S. Miller2009-01-11 09:06:36 +0100
commitfe96aaa14f553f0eb7af0e3502563a5400c65257 (patch)
treec82499085a496ede1d4764c61e249c4a0a2c6a43 /drivers/net/hp-plus.c
parentnetdev: gianfar: add MII ioctl handler (diff)
downloadkernel-qcow2-linux-fe96aaa14f553f0eb7af0e3502563a5400c65257.tar.gz
kernel-qcow2-linux-fe96aaa14f553f0eb7af0e3502563a5400c65257.tar.xz
kernel-qcow2-linux-fe96aaa14f553f0eb7af0e3502563a5400c65257.zip
netdev: add missing set_mac_address hook
Many drivers lost the ability to set ethernet address accidently during the net_device_ops conversion. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/hp-plus.c')
-rw-r--r--drivers/net/hp-plus.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/hp-plus.c b/drivers/net/hp-plus.c
index b507dbc16e62..5e070f446635 100644
--- a/drivers/net/hp-plus.c
+++ b/drivers/net/hp-plus.c
@@ -166,6 +166,7 @@ static const struct net_device_ops hpp_netdev_ops = {
.ndo_get_stats = eip_get_stats,
.ndo_set_multicast_list = eip_set_multicast_list,
.ndo_validate_addr = eth_validate_addr,
+ .ndo_set_mac_address = eth_mac_addr,
.ndo_change_mtu = eth_change_mtu,
#ifdef CONFIG_NET_POLL_CONTROLLER
.ndo_poll_controller = eip_poll,