Commit a035ddbd authored by Tree Davies's avatar Tree Davies Committed by Greg Kroah-Hartman

Staging: rtl8192e: Rename variable nStuckCount

Rename variable nStuckCount to stuck_count
to fix checkpatch warning Avoid CamelCase.
Signed-off-by: default avatarTree Davies <tdavies@darkphysics.net>
Tested-by: default avatarPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/20240908192633.94144-14-tdavies@darkphysics.netSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8c8aef9f
...@@ -860,13 +860,13 @@ static enum reset_type _rtl92e_tx_check_stuck(struct net_device *dev) ...@@ -860,13 +860,13 @@ static enum reset_type _rtl92e_tx_check_stuck(struct net_device *dev)
skb = __skb_peek(&ring->queue); skb = __skb_peek(&ring->queue);
tcb_desc = (struct cb_desc *)(skb->cb + tcb_desc = (struct cb_desc *)(skb->cb +
MAX_DEV_ADDR_SIZE); MAX_DEV_ADDR_SIZE);
tcb_desc->nStuckCount++; tcb_desc->stuck_count++;
bCheckFwTxCnt = true; bCheckFwTxCnt = true;
if (tcb_desc->nStuckCount > 1) if (tcb_desc->stuck_count > 1)
netdev_info(dev, netdev_info(dev,
"%s: QueueID=%d tcb_desc->nStuckCount=%d\n", "%s: QueueID=%d tcb_desc->stuck_count=%d\n",
__func__, QueueID, __func__, QueueID,
tcb_desc->nStuckCount); tcb_desc->stuck_count);
} }
} }
spin_unlock_irqrestore(&priv->irq_th_lock, flags); spin_unlock_irqrestore(&priv->irq_th_lock, flags);
......
...@@ -107,7 +107,7 @@ struct cb_desc { ...@@ -107,7 +107,7 @@ struct cb_desc {
u8 tx_use_drv_assinged_rate:1; u8 tx_use_drv_assinged_rate:1;
u8 hw_sec:1; u8 hw_sec:1;
u8 nStuckCount; u8 stuck_count;
/* Tx Firmware Related flags (10-11)*/ /* Tx Firmware Related flags (10-11)*/
u8 cts_enable:1; u8 cts_enable:1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment