Skip to content

Commit

Permalink
liquidio: Renamed txqs_start to start_txqs
Browse files Browse the repository at this point in the history
For consistency renaming txqs_start to start_txqs

Signed-off-by: Intiyaz Basha <intiyaz.basha@cavium.com>
Acked-by: Derek Chickles <derek.chickles@cavium.com>
Signed-off-by: Felix Manlunas <felix.manlunas@cavium.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Intiyaz Basha authored and David S. Miller committed Mar 25, 2018
1 parent 736b7ea commit c9614a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion drivers/net/ethernet/cavium/liquidio/lio_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2091,7 +2091,7 @@ static int liquidio_open(struct net_device *netdev)
return -1;
}

txqs_start(netdev);
start_txqs(netdev);

/* tell Octeon to start forwarding packets to host */
send_rx_ctrl_cmd(lio, 1);
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/cavium/liquidio/lio_vf_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1144,7 +1144,7 @@ static int liquidio_open(struct net_device *netdev)
lio->intf_open = 1;

netif_info(lio, ifup, lio->netdev, "Interface Open, ready for traffic\n");
txqs_start(netdev);
start_txqs(netdev);

/* tell Octeon to start forwarding packets to host */
send_rx_ctrl_cmd(lio, 1);
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/ethernet/cavium/liquidio/octeon_network.h
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ static inline void wake_txqs(struct net_device *netdev)
* \brief Start Tx queues
* @param netdev network device
*/
static inline void txqs_start(struct net_device *netdev)
static inline void start_txqs(struct net_device *netdev)
{
struct lio *lio = GET_LIO(netdev);
int i;
Expand Down

0 comments on commit c9614a1

Please sign in to comment.