mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 08:03:00 -04:00
Staging: rtl8192e: Rename variable pBa
Rename variable pBa to 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/20231014044435.11947-2-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
f81186254e
commit
ab79cedb6b
@@ -43,11 +43,11 @@ static u8 tx_ts_delete_ba(struct rtllib_device *ieee, struct tx_ts_record *pTxTs
|
||||
|
||||
static u8 rx_ts_delete_ba(struct rtllib_device *ieee, struct rx_ts_record *ts)
|
||||
{
|
||||
struct ba_record *pBa = &ts->rx_admitted_ba_record;
|
||||
struct ba_record *ba = &ts->rx_admitted_ba_record;
|
||||
u8 bSendDELBA = false;
|
||||
|
||||
if (pBa->b_valid) {
|
||||
deactivate_ba_entry(ieee, pBa);
|
||||
if (ba->b_valid) {
|
||||
deactivate_ba_entry(ieee, ba);
|
||||
bSendDELBA = true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user