net: m68k/nfeth: Remove wrong usage of dev->flags
Remove wrong setting of dev->flags. NETIF_F_NO_CSUM maps to IFF_DEBUG there, so looks like a mistake. Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
eff896ce0b
commit
512e4002ab
|
@ -205,7 +205,6 @@ static struct net_device * __init nfeth_probe(int unit)
|
||||||
dev->irq = nfEtherIRQ;
|
dev->irq = nfEtherIRQ;
|
||||||
dev->netdev_ops = &nfeth_netdev_ops;
|
dev->netdev_ops = &nfeth_netdev_ops;
|
||||||
|
|
||||||
dev->flags |= NETIF_F_NO_CSUM;
|
|
||||||
memcpy(dev->dev_addr, mac, ETH_ALEN);
|
memcpy(dev->dev_addr, mac, ETH_ALEN);
|
||||||
|
|
||||||
priv = netdev_priv(dev);
|
priv = netdev_priv(dev);
|
||||||
|
|
Loading…
Reference in New Issue