diff options
| author | 2013-01-15 15:05:59 -0500 | |
|---|---|---|
| committer | 2013-01-15 15:05:59 -0500 | |
| commit | 4b87f922598acf91eee18f71688a33f54f57bcde (patch) | |
| tree | 9cdfe30c6b96c47093da5392ed82d147290cd64c /net/core/dev.c | |
| parent | drivers/net: delete orphaned MCA ibmlana driver content (diff) | |
| parent | tg3: Fix crc errors on jumbo frame receive (diff) | |
| download | linux-dev-4b87f922598acf91eee18f71688a33f54f57bcde.tar.xz linux-dev-4b87f922598acf91eee18f71688a33f54f57bcde.zip | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts:
Documentation/networking/ip-sysctl.txt
drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c
Both conflicts were simply overlapping context.
A build fix for qlcnic is in here too, simply removing the added
devinit annotations which no longer exist.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/dev.c')
| -rw-r--r-- | net/core/dev.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index d1e8116e93cd..862eaa744a54 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -6575,6 +6575,14 @@ struct netdev_queue *dev_ingress_queue_create(struct net_device *dev) static const struct ethtool_ops default_ethtool_ops; +void netdev_set_default_ethtool_ops(struct net_device *dev, + const struct ethtool_ops *ops) +{ + if (dev->ethtool_ops == &default_ethtool_ops) + dev->ethtool_ops = ops; +} +EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops); + /** * alloc_netdev_mqs - allocate network device * @sizeof_priv: size of private data to allocate space for |
