staging: rtl8192e: Fix shadowed variable name
authorThomas Bracht Laumann Jespersen <t@laumann.xyz>
Fri, 21 May 2021 19:37:12 +0000 (21:37 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 25 May 2021 16:23:32 +0000 (18:23 +0200)
Fixes the following sparse warning:

drivers/staging/rtl8192e/rtllib_tx.c:884:32: warning: symbol 'tcb_desc' shadows an earlier one
drivers/staging/rtl8192e/rtllib_tx.c:569:24: originally declared here

Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
Link: https://lore.kernel.org/r/20210521193711.5457-1-t@laumann.xyz
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtllib_tx.c

index 89ec72b1895aff00c8e4a36e264134d5d4bc98f7..37715afb0210d07d5a981b1d4295de0716f440f8 100644 (file)
@@ -881,7 +881,7 @@ static int rtllib_xmit_inter(struct sk_buff *skb, struct net_device *dev)
 
  success:
        if (txb) {
-               struct cb_desc *tcb_desc = (struct cb_desc *)
+               tcb_desc = (struct cb_desc *)
                                (txb->fragments[0]->cb + MAX_DEV_ADDR_SIZE);
                tcb_desc->bTxEnableFwCalcDur = 1;
                tcb_desc->priority = skb->priority;