mirror of https://gitee.com/openkylin/linux.git
net: axienet: remove unnecessary ether_setup after alloc_etherdev
calling ether_setup is redundant since alloc_etherdev calls it. Signed-off-by: Subbaraya Sundeep Bhatta <sbhatta@xilinx.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e9c3f99f8b
commit
c706471b26
|
@ -1485,7 +1485,6 @@ static int axienet_of_probe(struct platform_device *op)
|
|||
if (!ndev)
|
||||
return -ENOMEM;
|
||||
|
||||
ether_setup(ndev);
|
||||
platform_set_drvdata(op, ndev);
|
||||
|
||||
SET_NETDEV_DEV(ndev, &op->dev);
|
||||
|
|
Loading…
Reference in New Issue