mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-04 02:34:10 -04:00
Staging: rtl8192e: Fixup if statement broken across multiple lines.
Join broken lines across if statement to fix checkpatch warning:
Lines should not end with a '('
Signed-off-by: Tree Davies <tdavies@darkphysics.net>
Link: https://lore.kernel.org/r/20240126223106.986093-13-tdavies@darkphysics.net
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
459a6c2b25
commit
9842cb0396
@@ -1736,10 +1736,8 @@ rtllib_rx_deauth(struct rtllib_device *ieee, struct sk_buff *skb)
|
||||
ieee->link_detect_info.busy_traffic = false;
|
||||
rtllib_disassociate(ieee);
|
||||
remove_peer_ts(ieee, header->addr2);
|
||||
if (!(ieee->rtllib_ap_sec_type(ieee) &
|
||||
(SEC_ALG_CCMP | SEC_ALG_TKIP)))
|
||||
schedule_delayed_work(
|
||||
&ieee->associate_procedure_wq, 5);
|
||||
if (!(ieee->rtllib_ap_sec_type(ieee) & (SEC_ALG_CCMP | SEC_ALG_TKIP)))
|
||||
schedule_delayed_work(&ieee->associate_procedure_wq, 5);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user