From: Wilfried Klaebe Date: Sun, 11 May 2014 00:12:32 +0000 (+0000) Subject: net: get rid of SET_ETHTOOL_OPS X-Git-Tag: omap-for-v3.16/fixes-against-rc1~36^2~241 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ad24ea4bf620a32631d7b3069c3e30c078b0c3e;p=pandora-kernel.git net: get rid of SET_ETHTOOL_OPS 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 Signed-off-by: Wilfried Klaebe Acked-by: Felipe Balbi Signed-off-by: David S. Miller --- Reading git-diff-tree failed