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:
Tree Davies 2024-09-08 12:26:30 -07:00 committed by Greg Kroah-Hartman
parent 8c8aef9f6e
commit a035ddbdbe
2 changed files with 5 additions and 5 deletions

View File

@ -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);

View File

@ -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;