Staging: rtl8192e: Rename variable bSendDELBA
authorTree Davies <tdavies@darkphysics.net>
Mon, 13 Nov 2023 19:59:04 +0000 (11:59 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 23 Nov 2023 12:45:56 +0000 (12:45 +0000)
Rename variable bSendDELBA to send_del_ba to fix checkpatch warning
Avoid CamelCase.

Signed-off-by: Tree Davies <tdavies@darkphysics.net>
Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/20231113195910.8423-2-tdavies@darkphysics.net
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl819x_BAProc.c

index 4af8055d24895b7642c28f23b744dff7815a50f8..c0058d2be6d1c8d110c55a23203b7c3bb4a7622e 100644 (file)
@@ -27,31 +27,31 @@ static u8 tx_ts_delete_ba(struct rtllib_device *ieee, struct tx_ts_record *pTxTs
 {
        struct ba_record *admitted_ba = &pTxTs->TxAdmittedBARecord;
        struct ba_record *pending_ba = &pTxTs->TxPendingBARecord;
-       u8 bSendDELBA = false;
+       u8 send_del_ba = false;
 
        if (pending_ba->b_valid) {
                deactivate_ba_entry(ieee, pending_ba);
-               bSendDELBA = true;
+               send_del_ba = true;
        }
 
        if (admitted_ba->b_valid) {
                deactivate_ba_entry(ieee, admitted_ba);
-               bSendDELBA = true;
+               send_del_ba = true;
        }
-       return bSendDELBA;
+       return send_del_ba;
 }
 
 static u8 rx_ts_delete_ba(struct rtllib_device *ieee, struct rx_ts_record *ts)
 {
        struct ba_record *ba = &ts->rx_admitted_ba_record;
-       u8                      bSendDELBA = false;
+       u8                      send_del_ba = false;
 
        if (ba->b_valid) {
                deactivate_ba_entry(ieee, ba);
-               bSendDELBA = true;
+               send_del_ba = true;
        }
 
-       return bSendDELBA;
+       return send_del_ba;
 }
 
 void rtllib_reset_ba_entry(struct ba_record *ba)