You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
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
@@ -201,7 +201,7 @@ static const struct net_device_ops el_netdev_ops = {
|
||||
.ndo_stop = el1_close,
|
||||
.ndo_start_xmit = el_start_xmit,
|
||||
.ndo_tx_timeout = el_timeout,
|
||||
.ndo_set_multicast_list = set_multicast_list,
|
||||
.ndo_set_rx_mode = set_multicast_list,
|
||||
.ndo_change_mtu = eth_change_mtu,
|
||||
.ndo_set_mac_address = eth_mac_addr,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
|
||||
@@ -545,7 +545,7 @@ static const struct net_device_ops netdev_ops = {
|
||||
.ndo_stop = el3_close,
|
||||
.ndo_start_xmit = el3_start_xmit,
|
||||
.ndo_get_stats = el3_get_stats,
|
||||
.ndo_set_multicast_list = set_multicast_list,
|
||||
.ndo_set_rx_mode = set_multicast_list,
|
||||
.ndo_tx_timeout = el3_tx_timeout,
|
||||
.ndo_change_mtu = eth_change_mtu,
|
||||
.ndo_set_mac_address = eth_mac_addr,
|
||||
|
||||
@@ -569,7 +569,7 @@ static const struct net_device_ops netdev_ops = {
|
||||
.ndo_start_xmit = corkscrew_start_xmit,
|
||||
.ndo_tx_timeout = corkscrew_timeout,
|
||||
.ndo_get_stats = corkscrew_get_stats,
|
||||
.ndo_set_multicast_list = set_rx_mode,
|
||||
.ndo_set_rx_mode = set_rx_mode,
|
||||
.ndo_change_mtu = eth_change_mtu,
|
||||
.ndo_set_mac_address = eth_mac_addr,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
|
||||
@@ -255,7 +255,7 @@ static const struct net_device_ops el3_netdev_ops = {
|
||||
.ndo_tx_timeout = el3_tx_timeout,
|
||||
.ndo_get_stats = el3_get_stats,
|
||||
.ndo_do_ioctl = el3_ioctl,
|
||||
.ndo_set_multicast_list = set_multicast_list,
|
||||
.ndo_set_rx_mode = set_multicast_list,
|
||||
.ndo_change_mtu = eth_change_mtu,
|
||||
.ndo_set_mac_address = eth_mac_addr,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
|
||||
@@ -184,7 +184,7 @@ static const struct net_device_ops el3_netdev_ops = {
|
||||
.ndo_tx_timeout = el3_tx_timeout,
|
||||
.ndo_set_config = el3_config,
|
||||
.ndo_get_stats = el3_get_stats,
|
||||
.ndo_set_multicast_list = set_multicast_list,
|
||||
.ndo_set_rx_mode = set_multicast_list,
|
||||
.ndo_change_mtu = eth_change_mtu,
|
||||
.ndo_set_mac_address = eth_mac_addr,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
|
||||
@@ -1055,7 +1055,7 @@ static const struct net_device_ops boomrang_netdev_ops = {
|
||||
#ifdef CONFIG_PCI
|
||||
.ndo_do_ioctl = vortex_ioctl,
|
||||
#endif
|
||||
.ndo_set_multicast_list = set_rx_mode,
|
||||
.ndo_set_rx_mode = set_rx_mode,
|
||||
.ndo_change_mtu = eth_change_mtu,
|
||||
.ndo_set_mac_address = eth_mac_addr,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
@@ -1073,7 +1073,7 @@ static const struct net_device_ops vortex_netdev_ops = {
|
||||
#ifdef CONFIG_PCI
|
||||
.ndo_do_ioctl = vortex_ioctl,
|
||||
#endif
|
||||
.ndo_set_multicast_list = set_rx_mode,
|
||||
.ndo_set_rx_mode = set_rx_mode,
|
||||
.ndo_change_mtu = eth_change_mtu,
|
||||
.ndo_set_mac_address = eth_mac_addr,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
|
||||
@@ -2266,7 +2266,7 @@ static const struct net_device_ops typhoon_netdev_ops = {
|
||||
.ndo_open = typhoon_open,
|
||||
.ndo_stop = typhoon_close,
|
||||
.ndo_start_xmit = typhoon_start_tx,
|
||||
.ndo_set_multicast_list = typhoon_set_rx_mode,
|
||||
.ndo_set_rx_mode = typhoon_set_rx_mode,
|
||||
.ndo_tx_timeout = typhoon_tx_timeout,
|
||||
.ndo_get_stats = typhoon_get_stats,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
|
||||
Reference in New Issue
Block a user