mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 06:49:29 -04:00
Staging: rtl8192e: Rename variable pTS in function rtllib_rx_ADDBAReq()
Rename variable pTS in function rtllib_rx_ADDBAReq() to ts 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/20230825140847.501113-3-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
0114d2209e
commit
568fb23971
@@ -220,7 +220,7 @@ int rtllib_rx_ADDBAReq(struct rtllib_device *ieee, struct sk_buff *skb)
|
||||
union ba_param_set *pBaParamSet = NULL;
|
||||
u16 *pBaTimeoutVal = NULL;
|
||||
union sequence_control *pBaStartSeqCtrl = NULL;
|
||||
struct rx_ts_record *pTS = NULL;
|
||||
struct rx_ts_record *ts = NULL;
|
||||
|
||||
if (skb->len < sizeof(struct rtllib_hdr_3addr) + 9) {
|
||||
netdev_warn(ieee->dev, "Invalid skb len in BAREQ(%d / %d)\n",
|
||||
@@ -253,13 +253,13 @@ int rtllib_rx_ADDBAReq(struct rtllib_device *ieee, struct sk_buff *skb)
|
||||
ieee->ht_info->bCurrentHTSupport);
|
||||
goto OnADDBAReq_Fail;
|
||||
}
|
||||
if (!GetTs(ieee, (struct ts_common_info **)&pTS, dst,
|
||||
if (!GetTs(ieee, (struct ts_common_info **)&ts, dst,
|
||||
(u8)(pBaParamSet->field.tid), RX_DIR, true)) {
|
||||
rc = ADDBA_STATUS_REFUSED;
|
||||
netdev_warn(ieee->dev, "%s(): can't get TS\n", __func__);
|
||||
goto OnADDBAReq_Fail;
|
||||
}
|
||||
pBA = &pTS->rx_admitted_ba_record;
|
||||
pBA = &ts->rx_admitted_ba_record;
|
||||
|
||||
if (pBaParamSet->field.ba_policy == BA_POLICY_DELAYED) {
|
||||
rc = ADDBA_STATUS_INVALID_PARAM;
|
||||
@@ -268,7 +268,7 @@ int rtllib_rx_ADDBAReq(struct rtllib_device *ieee, struct sk_buff *skb)
|
||||
goto OnADDBAReq_Fail;
|
||||
}
|
||||
|
||||
rtllib_FlushRxTsPendingPkts(ieee, pTS);
|
||||
rtllib_FlushRxTsPendingPkts(ieee, ts);
|
||||
|
||||
deactivate_ba_entry(ieee, pBA);
|
||||
pBA->dialog_token = *pDialogToken;
|
||||
|
||||
Reference in New Issue
Block a user