mirror of
https://github.com/torvalds/linux.git
synced 2024-12-16 08:02:17 +00:00
atl1c: use netif_napi_add_tx() for Tx NAPI
Use netif_napi_add_tx() for NAPI in Tx direction instead of the regular netif_napi_add() function. Signed-off-by: Sieng-Piaw Liew <liew.s.piaw@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
da53af8cb9
commit
6e693a1042
@ -2734,8 +2734,8 @@ static int atl1c_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
netif_napi_add(netdev, &adapter->rrd_ring[i].napi,
|
||||
atl1c_clean_rx, 64);
|
||||
for (i = 0; i < adapter->tx_queue_count; ++i)
|
||||
netif_napi_add(netdev, &adapter->tpd_ring[i].napi,
|
||||
atl1c_clean_tx, 64);
|
||||
netif_napi_add_tx(netdev, &adapter->tpd_ring[i].napi,
|
||||
atl1c_clean_tx);
|
||||
timer_setup(&adapter->phy_config_timer, atl1c_phy_config, 0);
|
||||
/* setup the private structure */
|
||||
err = atl1c_sw_init(adapter);
|
||||
|
Loading…
Reference in New Issue
Block a user