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>
This commit is contained in:

committed by
David S. Miller

parent
01789349ee
commit
afc4b13df1
@@ -910,7 +910,7 @@ static const struct net_device_ops ibmlana_netdev_ops = {
|
||||
.ndo_open = ibmlana_open,
|
||||
.ndo_stop = ibmlana_close,
|
||||
.ndo_start_xmit = ibmlana_tx,
|
||||
.ndo_set_multicast_list = ibmlana_set_multicast_list,
|
||||
.ndo_set_rx_mode = ibmlana_set_multicast_list,
|
||||
.ndo_change_mtu = eth_change_mtu,
|
||||
.ndo_set_mac_address = eth_mac_addr,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
|
@@ -111,7 +111,7 @@ static const struct net_device_ops sonic_netdev_ops = {
|
||||
.ndo_stop = jazzsonic_close,
|
||||
.ndo_start_xmit = sonic_send_packet,
|
||||
.ndo_get_stats = sonic_get_stats,
|
||||
.ndo_set_multicast_list = sonic_multicast_list,
|
||||
.ndo_set_rx_mode = sonic_multicast_list,
|
||||
.ndo_tx_timeout = sonic_tx_timeout,
|
||||
.ndo_change_mtu = eth_change_mtu,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
|
@@ -190,7 +190,7 @@ static const struct net_device_ops macsonic_netdev_ops = {
|
||||
.ndo_open = macsonic_open,
|
||||
.ndo_stop = macsonic_close,
|
||||
.ndo_start_xmit = sonic_send_packet,
|
||||
.ndo_set_multicast_list = sonic_multicast_list,
|
||||
.ndo_set_rx_mode = sonic_multicast_list,
|
||||
.ndo_tx_timeout = sonic_tx_timeout,
|
||||
.ndo_get_stats = sonic_get_stats,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
|
@@ -783,7 +783,7 @@ static const struct net_device_ops natsemi_netdev_ops = {
|
||||
.ndo_stop = netdev_close,
|
||||
.ndo_start_xmit = start_tx,
|
||||
.ndo_get_stats = get_stats,
|
||||
.ndo_set_multicast_list = set_rx_mode,
|
||||
.ndo_set_rx_mode = set_rx_mode,
|
||||
.ndo_change_mtu = natsemi_change_mtu,
|
||||
.ndo_do_ioctl = netdev_ioctl,
|
||||
.ndo_tx_timeout = ns_tx_timeout,
|
||||
|
@@ -1937,7 +1937,7 @@ static const struct net_device_ops netdev_ops = {
|
||||
.ndo_start_xmit = ns83820_hard_start_xmit,
|
||||
.ndo_get_stats = ns83820_get_stats,
|
||||
.ndo_change_mtu = ns83820_change_mtu,
|
||||
.ndo_set_multicast_list = ns83820_set_multicast,
|
||||
.ndo_set_rx_mode = ns83820_set_multicast,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
.ndo_set_mac_address = eth_mac_addr,
|
||||
.ndo_tx_timeout = ns83820_tx_timeout,
|
||||
|
@@ -122,7 +122,7 @@ static const struct net_device_ops xtsonic_netdev_ops = {
|
||||
.ndo_stop = xtsonic_close,
|
||||
.ndo_start_xmit = sonic_send_packet,
|
||||
.ndo_get_stats = sonic_get_stats,
|
||||
.ndo_set_multicast_list = sonic_multicast_list,
|
||||
.ndo_set_rx_mode = sonic_multicast_list,
|
||||
.ndo_tx_timeout = sonic_tx_timeout,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
.ndo_change_mtu = eth_change_mtu,
|
||||
|
Reference in New Issue
Block a user