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/plip.c | |
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/plip.c')
-rw-r--r-- | drivers/net/plip.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/plip.c b/drivers/net/plip.c index 7a62f781fef2..b79f7768a40e 100644 --- a/drivers/net/plip.c +++ b/drivers/net/plip.c | |||
@@ -270,6 +270,8 @@ static const struct net_device_ops plip_netdev_ops = { | |||
270 | .ndo_stop = plip_close, | 270 | .ndo_stop = plip_close, |
271 | .ndo_start_xmit = plip_tx_packet, | 271 | .ndo_start_xmit = plip_tx_packet, |
272 | .ndo_do_ioctl = plip_ioctl, | 272 | .ndo_do_ioctl = plip_ioctl, |
273 | .ndo_set_mac_address = eth_mac_addr, | ||
274 | .ndo_validate_addr = eth_validate_addr, | ||
273 | }; | 275 | }; |
274 | 276 | ||
275 | /* Entry point of PLIP driver. | 277 | /* Entry point of PLIP driver. |