net/ethernet: remove useless is_valid_ether_addr from drivers ndo_open
authorJoachim Eastwood <manabian@gmail.com>
Fri, 16 Nov 2012 04:47:15 +0000 (04:47 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 20 Nov 2012 00:01:18 +0000 (19:01 -0500)
If ndo_validate_addr is set to the generic eth_validate_addr
function there is no point in calling is_valid_ether_addr
from driver ndo_open if ndo_open is not used elsewhere in
the driver.

With this change is_valid_ether_addr will be called from the
generic eth_validate_addr function. So there should be no change
in the actual behavior.

Signed-off-by: Joachim Eastwood <manabian@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

No differences found