mirror of
https://github.com/torvalds/linux.git
synced 2026-05-24 15:12:13 +02:00
Staging: rtl8192e: Rename function rtllib_send_ADDBARsp()
Rename function rtllib_send_ADDBARsp to rtllib_send_add_ba_rsp 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-5-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2e5744d418
commit
ea1bc302be
|
|
@ -186,8 +186,8 @@ static void rtllib_send_add_ba_req(struct rtllib_device *ieee, u8 *dst,
|
|||
netdev_dbg(ieee->dev, "Failed to generate ADDBAReq packet.\n");
|
||||
}
|
||||
|
||||
static void rtllib_send_ADDBARsp(struct rtllib_device *ieee, u8 *dst,
|
||||
struct ba_record *ba, u16 status_code)
|
||||
static void rtllib_send_add_ba_rsp(struct rtllib_device *ieee, u8 *dst,
|
||||
struct ba_record *ba, u16 status_code)
|
||||
{
|
||||
struct sk_buff *skb;
|
||||
|
||||
|
|
@ -283,7 +283,7 @@ int rtllib_rx_add_ba_req(struct rtllib_device *ieee, struct sk_buff *skb)
|
|||
ba->ba_param_set.field.buffer_size = 32;
|
||||
|
||||
activate_ba_entry(ba, 0);
|
||||
rtllib_send_ADDBARsp(ieee, dst, ba, ADDBA_STATUS_SUCCESS);
|
||||
rtllib_send_add_ba_rsp(ieee, dst, ba, ADDBA_STATUS_SUCCESS);
|
||||
|
||||
return 0;
|
||||
|
||||
|
|
@ -295,7 +295,7 @@ int rtllib_rx_add_ba_req(struct rtllib_device *ieee, struct sk_buff *skb)
|
|||
BA.ba_timeout_value = *ba_timeout_value;
|
||||
BA.dialog_token = *dialog_token;
|
||||
BA.ba_param_set.field.ba_policy = BA_POLICY_IMMEDIATE;
|
||||
rtllib_send_ADDBARsp(ieee, dst, &BA, rc);
|
||||
rtllib_send_add_ba_rsp(ieee, dst, &BA, rc);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user