mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-09 07:23:14 +00:00
Staging: rtl8192e: Remove unnecessary parenthesis in rtllib_rx_assoc_resp()
Remove parentheses to fix checkpatch Warning: Unnecessary parentheses around resp->info_element[0].id Signed-off-by: Tree Davies <tdavies@darkphysics.net> Link: https://lore.kernel.org/r/20231223015942.418263-5-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6bb7a078a0
commit
be0d49be0c
@ -1619,7 +1619,7 @@ rtllib_rx_assoc_resp(struct rtllib_device *ieee, struct sk_buff *skb,
|
||||
|
||||
kfree(ieee->assocresp_ies);
|
||||
ieee->assocresp_ies = NULL;
|
||||
ies = &(assoc_resp->info_element[0].id);
|
||||
ies = &assoc_resp->info_element[0].id;
|
||||
ieee->assocresp_ies_len = (skb->data + skb->len) - ies;
|
||||
ieee->assocresp_ies = kmemdup(ies,
|
||||
ieee->assocresp_ies_len,
|
||||
|
Loading…
x
Reference in New Issue
Block a user