mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-08 14:23:19 +00:00
Staging: rtl8192e: Rename variable nStuckCount
Rename variable nStuckCount to stuck_count to fix checkpatch warning Avoid CamelCase. Signed-off-by: Tree Davies <tdavies@darkphysics.net> Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/20240908192633.94144-14-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8c8aef9f6e
commit
a035ddbdbe
@ -860,13 +860,13 @@ static enum reset_type _rtl92e_tx_check_stuck(struct net_device *dev)
|
||||
skb = __skb_peek(&ring->queue);
|
||||
tcb_desc = (struct cb_desc *)(skb->cb +
|
||||
MAX_DEV_ADDR_SIZE);
|
||||
tcb_desc->nStuckCount++;
|
||||
tcb_desc->stuck_count++;
|
||||
bCheckFwTxCnt = true;
|
||||
if (tcb_desc->nStuckCount > 1)
|
||||
if (tcb_desc->stuck_count > 1)
|
||||
netdev_info(dev,
|
||||
"%s: QueueID=%d tcb_desc->nStuckCount=%d\n",
|
||||
"%s: QueueID=%d tcb_desc->stuck_count=%d\n",
|
||||
__func__, QueueID,
|
||||
tcb_desc->nStuckCount);
|
||||
tcb_desc->stuck_count);
|
||||
}
|
||||
}
|
||||
spin_unlock_irqrestore(&priv->irq_th_lock, flags);
|
||||
|
@ -107,7 +107,7 @@ struct cb_desc {
|
||||
u8 tx_use_drv_assinged_rate:1;
|
||||
u8 hw_sec:1;
|
||||
|
||||
u8 nStuckCount;
|
||||
u8 stuck_count;
|
||||
|
||||
/* Tx Firmware Related flags (10-11)*/
|
||||
u8 cts_enable:1;
|
||||
|
Loading…
Reference in New Issue
Block a user