staging: rtl8723bs: hal remove the assignment to itself
authorSaurav Girepunje <saurav.girepunje@gmail.com>
Thu, 28 Oct 2021 04:45:13 +0000 (10:15 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 30 Oct 2021 09:14:53 +0000 (11:14 +0200)
Remove the assignment of variable to itself.
Assigning the variable to itself not make any difference on value.

Signed-off-by: Saurav Girepunje <saurav.girepunje@gmail.com>
Link: https://lore.kernel.org/r/YXoq2ViLxPVwAgLq@Sauravs-MacBook-Air.local
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c

index cce3e7e..f1fc077 100644 (file)
@@ -2746,19 +2746,7 @@ void rtl8723b_update_txdesc(struct xmit_frame *pxmitframe, u8 *pbuf)
        struct tx_desc *pdesc;
 
        rtl8723b_fill_default_txdesc(pxmitframe, pbuf);
-
        pdesc = (struct tx_desc *)pbuf;
-       pdesc->txdw0 = pdesc->txdw0;
-       pdesc->txdw1 = pdesc->txdw1;
-       pdesc->txdw2 = pdesc->txdw2;
-       pdesc->txdw3 = pdesc->txdw3;
-       pdesc->txdw4 = pdesc->txdw4;
-       pdesc->txdw5 = pdesc->txdw5;
-       pdesc->txdw6 = pdesc->txdw6;
-       pdesc->txdw7 = pdesc->txdw7;
-       pdesc->txdw8 = pdesc->txdw8;
-       pdesc->txdw9 = pdesc->txdw9;
-
        rtl8723b_cal_txdesc_chksum(pdesc);
 }