mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 17:27:11 -04:00
Staging: rtl8192e: Rename variable pPendingBa
Rename variable pPendingBa to pending_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/20230921032515.96152-4-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
ae25149935
commit
f20a45d450
@@ -26,11 +26,11 @@ static void deactivate_ba_entry(struct rtllib_device *ieee, struct ba_record *pB
|
||||
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 *pPendingBa = &pTxTs->TxPendingBARecord;
|
||||
struct ba_record *pending_ba = &pTxTs->TxPendingBARecord;
|
||||
u8 bSendDELBA = false;
|
||||
|
||||
if (pPendingBa->b_valid) {
|
||||
deactivate_ba_entry(ieee, pPendingBa);
|
||||
if (pending_ba->b_valid) {
|
||||
deactivate_ba_entry(ieee, pending_ba);
|
||||
bSendDELBA = true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user