Staging: rtl8192e: Rename goto OnADDBAReq_Fail
Rename goto OnADDBAReq_Fail -> on_add_ba_req_fail 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/20240229024325.453374-6-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ea1bc302be
commit
b9a982d654
@ -251,13 +251,13 @@ int rtllib_rx_add_ba_req(struct rtllib_device *ieee, struct sk_buff *skb)
|
||||
"Failed to reply on ADDBA_REQ as some capability is not ready(%d, %d)\n",
|
||||
ieee->current_network.qos_data.active,
|
||||
ieee->ht_info->current_ht_support);
|
||||
goto OnADDBAReq_Fail;
|
||||
goto on_add_ba_req_fail;
|
||||
}
|
||||
if (!rtllib_get_ts(ieee, (struct ts_common_info **)&ts, dst,
|
||||
(u8)(ba_param_set->field.tid), RX_DIR, true)) {
|
||||
rc = ADDBA_STATUS_REFUSED;
|
||||
netdev_warn(ieee->dev, "%s(): can't get TS\n", __func__);
|
||||
goto OnADDBAReq_Fail;
|
||||
goto on_add_ba_req_fail;
|
||||
}
|
||||
ba = &ts->rx_admitted_ba_record;
|
||||
|
||||
@ -265,7 +265,7 @@ int rtllib_rx_add_ba_req(struct rtllib_device *ieee, struct sk_buff *skb)
|
||||
rc = ADDBA_STATUS_INVALID_PARAM;
|
||||
netdev_warn(ieee->dev, "%s(): BA Policy is not correct\n",
|
||||
__func__);
|
||||
goto OnADDBAReq_Fail;
|
||||
goto on_add_ba_req_fail;
|
||||
}
|
||||
|
||||
rtllib_FlushRxTsPendingPkts(ieee, ts);
|
||||
@ -287,7 +287,7 @@ int rtllib_rx_add_ba_req(struct rtllib_device *ieee, struct sk_buff *skb)
|
||||
|
||||
return 0;
|
||||
|
||||
OnADDBAReq_Fail:
|
||||
on_add_ba_req_fail:
|
||||
{
|
||||
struct ba_record BA;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user