net: get rid of SET_ETHTOOL_OPS
authorWilfried Klaebe <w-lkml@lebenslange-mailadresse.de>
Sun, 11 May 2014 00:12:32 +0000 (00:12 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 13 May 2014 21:43:20 +0000 (17:43 -0400)
net: get rid of SET_ETHTOOL_OPS

Dave Miller mentioned he'd like to see SET_ETHTOOL_OPS gone.
This does that.

Mostly done via coccinelle script:
@@
struct ethtool_ops *ops;
struct net_device *dev;
@@
-       SET_ETHTOOL_OPS(dev, ops);
+       dev->ethtool_ops = ops;

Compile tested only, but I'd seriously wonder if this broke anything.

Suggested-by: Dave Miller <davem@davemloft.net>
Signed-off-by: Wilfried Klaebe <w-lkml@lebenslange-mailadresse.de>
Acked-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

No differences found