diff options
author | Jiri Pirko <jpirko@redhat.com> | 2011-08-16 02:29:01 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-08-17 23:22:03 -0400 |
commit | afc4b13df143122f99a0eb10bfefb216c2806de0 (patch) | |
tree | 5a90e0a8226ce4173d8d366f5bed0322c9623cdd /drivers/net/arcnet | |
parent | 01789349ee52e4a3faf376f1485303d9723c4f1f (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/arcnet')
-rw-r--r-- | drivers/net/arcnet/com20020.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/arcnet/com20020.c b/drivers/net/arcnet/com20020.c index 7bfb91f32857..7b96c5f47e8d 100644 --- a/drivers/net/arcnet/com20020.c +++ b/drivers/net/arcnet/com20020.c | |||
@@ -154,7 +154,7 @@ const struct net_device_ops com20020_netdev_ops = { | |||
154 | .ndo_stop = arcnet_close, | 154 | .ndo_stop = arcnet_close, |
155 | .ndo_start_xmit = arcnet_send_packet, | 155 | .ndo_start_xmit = arcnet_send_packet, |
156 | .ndo_tx_timeout = arcnet_timeout, | 156 | .ndo_tx_timeout = arcnet_timeout, |
157 | .ndo_set_multicast_list = com20020_set_mc_list, | 157 | .ndo_set_rx_mode = com20020_set_mc_list, |
158 | }; | 158 | }; |
159 | 159 | ||
160 | /* Set up the struct net_device associated with this card. Called after | 160 | /* Set up the struct net_device associated with this card. Called after |