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:
Tree Davies 2023-10-13 21:44:32 -07:00 committed by Greg Kroah-Hartman
parent f81186254e
commit ab79cedb6b

View file

@ -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;
}