diff options
author | James Morris <james.l.morris@oracle.com> | 2014-11-19 05:32:12 -0500 |
---|---|---|
committer | James Morris <james.l.morris@oracle.com> | 2014-11-19 05:32:12 -0500 |
commit | b10778a00d40b3d9fdaaf5891e802794781ff71c (patch) | |
tree | 6ba4cbac86eecedc3f30650e7f764ecf00c83898 /net/ethernet/eth.c | |
parent | 594081ee7145cc30a3977cb4e218f81213b63dc5 (diff) | |
parent | bfe01a5ba2490f299e1d2d5508cbbbadd897bbe9 (diff) |
Merge commit 'v3.17' into next
Diffstat (limited to 'net/ethernet/eth.c')
-rw-r--r-- | net/ethernet/eth.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ethernet/eth.c b/net/ethernet/eth.c index 5dc638cad2e1..f405e0592407 100644 --- a/net/ethernet/eth.c +++ b/net/ethernet/eth.c | |||
@@ -390,7 +390,8 @@ EXPORT_SYMBOL(ether_setup); | |||
390 | struct net_device *alloc_etherdev_mqs(int sizeof_priv, unsigned int txqs, | 390 | struct net_device *alloc_etherdev_mqs(int sizeof_priv, unsigned int txqs, |
391 | unsigned int rxqs) | 391 | unsigned int rxqs) |
392 | { | 392 | { |
393 | return alloc_netdev_mqs(sizeof_priv, "eth%d", ether_setup, txqs, rxqs); | 393 | return alloc_netdev_mqs(sizeof_priv, "eth%d", NET_NAME_UNKNOWN, |
394 | ether_setup, txqs, rxqs); | ||
394 | } | 395 | } |
395 | EXPORT_SYMBOL(alloc_etherdev_mqs); | 396 | EXPORT_SYMBOL(alloc_etherdev_mqs); |
396 | 397 | ||