Skip to content

Commit c9614a1

Browse files
Intiyaz Bashadavem330
authored andcommitted
liquidio: Renamed txqs_start to start_txqs
For consistency renaming txqs_start to start_txqs Signed-off-by: Intiyaz Basha <[email protected]> Acked-by: Derek Chickles <[email protected]> Signed-off-by: Felix Manlunas <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 736b7ea commit c9614a1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

drivers/net/ethernet/cavium/liquidio/lio_main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2091,7 +2091,7 @@ static int liquidio_open(struct net_device *netdev)
20912091
return -1;
20922092
}
20932093

2094-
txqs_start(netdev);
2094+
start_txqs(netdev);
20952095

20962096
/* tell Octeon to start forwarding packets to host */
20972097
send_rx_ctrl_cmd(lio, 1);

drivers/net/ethernet/cavium/liquidio/lio_vf_main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1144,7 +1144,7 @@ static int liquidio_open(struct net_device *netdev)
11441144
lio->intf_open = 1;
11451145

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

11491149
/* tell Octeon to start forwarding packets to host */
11501150
send_rx_ctrl_cmd(lio, 1);

drivers/net/ethernet/cavium/liquidio/octeon_network.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ static inline void wake_txqs(struct net_device *netdev)
542542
* \brief Start Tx queues
543543
* @param netdev network device
544544
*/
545-
static inline void txqs_start(struct net_device *netdev)
545+
static inline void start_txqs(struct net_device *netdev)
546546
{
547547
struct lio *lio = GET_LIO(netdev);
548548
int i;

0 commit comments

Comments
 (0)