staging: rtl8192e: Fix shadowed variable name
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>
This commit is contained in:
parent
939ef16943
commit
6ec070e872
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue