Commit 321dee6e authored by Alexander Beregalov's avatar Alexander Beregalov Committed by David S. Miller

wireless: remove duplicated .ndo_set_mac_address

Signed-off-by: default avatarAlexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 424b86a6
...@@ -2752,7 +2752,6 @@ static const struct net_device_ops airo_netdev_ops = { ...@@ -2752,7 +2752,6 @@ static const struct net_device_ops airo_netdev_ops = {
.ndo_set_mac_address = airo_set_mac_address, .ndo_set_mac_address = airo_set_mac_address,
.ndo_do_ioctl = airo_ioctl, .ndo_do_ioctl = airo_ioctl,
.ndo_change_mtu = airo_change_mtu, .ndo_change_mtu = airo_change_mtu,
.ndo_set_mac_address = eth_mac_addr,
.ndo_validate_addr = eth_validate_addr, .ndo_validate_addr = eth_validate_addr,
}; };
...@@ -2765,7 +2764,6 @@ static const struct net_device_ops mpi_netdev_ops = { ...@@ -2765,7 +2764,6 @@ static const struct net_device_ops mpi_netdev_ops = {
.ndo_set_mac_address = airo_set_mac_address, .ndo_set_mac_address = airo_set_mac_address,
.ndo_do_ioctl = airo_ioctl, .ndo_do_ioctl = airo_ioctl,
.ndo_change_mtu = airo_change_mtu, .ndo_change_mtu = airo_change_mtu,
.ndo_set_mac_address = eth_mac_addr,
.ndo_validate_addr = eth_validate_addr, .ndo_validate_addr = eth_validate_addr,
}; };
......
...@@ -11593,7 +11593,6 @@ static const struct net_device_ops ipw_netdev_ops = { ...@@ -11593,7 +11593,6 @@ static const struct net_device_ops ipw_netdev_ops = {
.ndo_set_mac_address = ipw_net_set_mac_address, .ndo_set_mac_address = ipw_net_set_mac_address,
.ndo_start_xmit = ieee80211_xmit, .ndo_start_xmit = ieee80211_xmit,
.ndo_change_mtu = ieee80211_change_mtu, .ndo_change_mtu = ieee80211_change_mtu,
.ndo_set_mac_address = eth_mac_addr,
.ndo_validate_addr = eth_validate_addr, .ndo_validate_addr = eth_validate_addr,
}; };
......
...@@ -803,7 +803,6 @@ static const struct net_device_ops islpci_netdev_ops = { ...@@ -803,7 +803,6 @@ static const struct net_device_ops islpci_netdev_ops = {
.ndo_tx_timeout = islpci_eth_tx_timeout, .ndo_tx_timeout = islpci_eth_tx_timeout,
.ndo_set_mac_address = prism54_set_mac_address, .ndo_set_mac_address = prism54_set_mac_address,
.ndo_change_mtu = eth_change_mtu, .ndo_change_mtu = eth_change_mtu,
.ndo_set_mac_address = eth_mac_addr,
.ndo_validate_addr = eth_validate_addr, .ndo_validate_addr = eth_validate_addr,
}; };
......
...@@ -1725,7 +1725,6 @@ static const struct net_device_ops zd1201_netdev_ops = { ...@@ -1725,7 +1725,6 @@ static const struct net_device_ops zd1201_netdev_ops = {
.ndo_set_multicast_list = zd1201_set_multicast, .ndo_set_multicast_list = zd1201_set_multicast,
.ndo_set_mac_address = zd1201_set_mac_address, .ndo_set_mac_address = zd1201_set_mac_address,
.ndo_change_mtu = eth_change_mtu, .ndo_change_mtu = eth_change_mtu,
.ndo_set_mac_address = eth_mac_addr,
.ndo_validate_addr = eth_validate_addr, .ndo_validate_addr = eth_validate_addr,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment