staging: rtl8723bs: hal remove the assignment to itself

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>
This commit is contained in:
Saurav Girepunje 2021-10-28 10:15:13 +05:30 committed by Greg Kroah-Hartman
parent 88c47bbf9a
commit cacd73e55e
1 changed files with 0 additions and 12 deletions

View 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);
}