mirror of https://gitee.com/openkylin/linux.git
mv643xx_eth: Use netif_set_real_num_{rx, tx}_queues()
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com> Acked-by: Lennert Buytenhek <buytenh@wantstofly.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1eb63a2814
commit
206d6b3270
|
@ -2901,7 +2901,8 @@ static int mv643xx_eth_probe(struct platform_device *pdev)
|
|||
mp->dev = dev;
|
||||
|
||||
set_params(mp, pd);
|
||||
dev->real_num_tx_queues = mp->txq_count;
|
||||
netif_set_real_num_tx_queues(dev, mp->txq_count);
|
||||
netif_set_real_num_rx_queues(dev, mp->rxq_count);
|
||||
|
||||
if (pd->phy_addr != MV643XX_ETH_PHY_NONE)
|
||||
mp->phy = phy_scan(mp, pd->phy_addr);
|
||||
|
|
Loading…
Reference in New Issue