diff options
author | David S. Miller <davem@davemloft.net> | 2008-07-17 04:52:12 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-17 22:21:03 -0400 |
commit | 09e83b5d7d1878065e2453239b49b684cd0fe4e5 (patch) | |
tree | a08d06c81d7bcd47e432443e24b126101ea1f2b9 /drivers/net/cpmac.c | |
parent | e8a0464cc950972824e2e128028ae3db666ec1ed (diff) |
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 d630e2a72f42..7c7b54e4828e 100644 --- a/drivers/net/cpmac.c +++ b/drivers/net/cpmac.c | |||
@@ -1165,7 +1165,6 @@ static int __devinit cpmac_probe(struct platform_device *pdev) | |||
1165 | dev->set_multicast_list = cpmac_set_multicast_list; | 1165 | dev->set_multicast_list = cpmac_set_multicast_list; |
1166 | dev->tx_timeout = cpmac_tx_timeout; | 1166 | dev->tx_timeout = cpmac_tx_timeout; |
1167 | dev->ethtool_ops = &cpmac_ethtool_ops; | 1167 | dev->ethtool_ops = &cpmac_ethtool_ops; |
1168 | dev->features |= NETIF_F_MULTI_QUEUE; | ||
1169 | 1168 | ||
1170 | netif_napi_add(dev, &priv->napi, cpmac_poll, 64); | 1169 | netif_napi_add(dev, &priv->napi, cpmac_poll, 64); |
1171 | 1170 | ||