aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/atheros/atl1e
diff options
context:
space:
mode:
authorJiri Pirko <jpirko@redhat.com>2011-08-16 02:29:01 -0400
committerDavid S. Miller <davem@davemloft.net>2011-08-17 23:22:03 -0400
commitafc4b13df143122f99a0eb10bfefb216c2806de0 (patch)
tree5a90e0a8226ce4173d8d366f5bed0322c9623cdd /drivers/net/ethernet/atheros/atl1e
parent01789349ee52e4a3faf376f1485303d9723c4f1f (diff)
net: remove use of ndo_set_multicast_list in drivers
replace it by ndo_set_rx_mode Signed-off-by: Jiri Pirko <jpirko@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/atheros/atl1e')
-rw-r--r--drivers/net/ethernet/atheros/atl1e/atl1e_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/atheros/atl1e/atl1e_main.c b/drivers/net/ethernet/atheros/atl1e/atl1e_main.c
index d8d411998fa..1b5dc799348 100644
--- a/drivers/net/ethernet/atheros/atl1e/atl1e_main.c
+++ b/drivers/net/ethernet/atheros/atl1e/atl1e_main.c
@@ -2212,7 +2212,7 @@ static const struct net_device_ops atl1e_netdev_ops = {
2212 .ndo_stop = atl1e_close, 2212 .ndo_stop = atl1e_close,
2213 .ndo_start_xmit = atl1e_xmit_frame, 2213 .ndo_start_xmit = atl1e_xmit_frame,
2214 .ndo_get_stats = atl1e_get_stats, 2214 .ndo_get_stats = atl1e_get_stats,
2215 .ndo_set_multicast_list = atl1e_set_multi, 2215 .ndo_set_rx_mode = atl1e_set_multi,
2216 .ndo_validate_addr = eth_validate_addr, 2216 .ndo_validate_addr = eth_validate_addr,
2217 .ndo_set_mac_address = atl1e_set_mac_addr, 2217 .ndo_set_mac_address = atl1e_set_mac_addr,
2218 .ndo_fix_features = atl1e_fix_features, 2218 .ndo_fix_features = atl1e_fix_features,