diff options
author | David S. Miller <davem@davemloft.net> | 2008-07-17 01:52:12 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-17 19:21:03 -0700 |
commit | 09e83b5d7d1878065e2453239b49b684cd0fe4e5 (patch) | |
tree | a08d06c81d7bcd47e432443e24b126101ea1f2b9 /drivers/net/cpmac.c | |
parent | e8a0464cc950972824e2e128028ae3db666ec1ed (diff) | |
download | linux-3.10-09e83b5d7d1878065e2453239b49b684cd0fe4e5.tar.gz linux-3.10-09e83b5d7d1878065e2453239b49b684cd0fe4e5.tar.bz2 linux-3.10-09e83b5d7d1878065e2453239b49b684cd0fe4e5.zip |
netdev: Kill NETIF_F_MULTI_QUEUE.
There is no need for a feature bit for something that
can be tested by simply checking the TX queue count.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/cpmac.c')
-rw-r--r-- | drivers/net/cpmac.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/cpmac.c b/drivers/net/cpmac.c index d630e2a72f4..7c7b54e4828 100644 --- a/drivers/net/cpmac.c +++ b/drivers/net/cpmac.c @@ -1165,7 +1165,6 @@ static int __devinit cpmac_probe(struct platform_device *pdev) dev->set_multicast_list = cpmac_set_multicast_list; dev->tx_timeout = cpmac_tx_timeout; dev->ethtool_ops = &cpmac_ethtool_ops; - dev->features |= NETIF_F_MULTI_QUEUE; netif_napi_add(dev, &priv->napi, cpmac_poll, 64); |