mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
netdev: missing validate_address hooks
Some devices were converted incorrectly and are missing the validate address hooks. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
fe96aaa14f
commit
52255bbe35
3 changed files with 3 additions and 0 deletions
|
@ -460,6 +460,7 @@ static const struct net_device_ops ace_netdev_ops = {
|
|||
.ndo_get_stats = ace_get_stats,
|
||||
.ndo_start_xmit = ace_start_xmit,
|
||||
.ndo_set_multicast_list = ace_set_multicast_list,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
.ndo_set_mac_address = ace_set_mac_addr,
|
||||
.ndo_change_mtu = ace_change_mtu,
|
||||
#if ACENIC_DO_VLAN
|
||||
|
|
|
@ -1357,6 +1357,7 @@ static const struct net_device_ops ks8695_netdev_ops = {
|
|||
.ndo_start_xmit = ks8695_start_xmit,
|
||||
.ndo_tx_timeout = ks8695_timeout,
|
||||
.ndo_set_mac_address = ks8695_set_mac,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
.ndo_set_multicast_list = ks8695_set_multicast,
|
||||
};
|
||||
|
||||
|
|
|
@ -952,6 +952,7 @@ static const struct net_device_ops mlx4_netdev_ops = {
|
|||
.ndo_get_stats = mlx4_en_get_stats,
|
||||
.ndo_set_multicast_list = mlx4_en_set_multicast,
|
||||
.ndo_set_mac_address = mlx4_en_set_mac,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
.ndo_change_mtu = mlx4_en_change_mtu,
|
||||
.ndo_tx_timeout = mlx4_en_tx_timeout,
|
||||
.ndo_vlan_rx_register = mlx4_en_vlan_rx_register,
|
||||
|
|
Loading…
Reference in a new issue