Skip to content

Commit e946ef9

Browse files
treedaviesgregkh
authored andcommitted
Staging: rtl8192e: Fix statement broken across 2 lines in rtllib_rx_assoc_resp()
Join 2 lines, so that statment resides on one line, to fix Warning: Lines should not end with a '(' Signed-off-by: Tree Davies <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 7d22506 commit e946ef9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/staging/rtl8192e/rtllib_softmac.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1636,8 +1636,7 @@ rtllib_rx_assoc_resp(struct rtllib_device *ieee, struct sk_buff *skb,
16361636
"Association response status code 0x%x\n",
16371637
errcode);
16381638
if (ieee->AsocRetryCount < RT_ASOC_RETRY_LIMIT)
1639-
schedule_delayed_work(
1640-
&ieee->associate_procedure_wq, 0);
1639+
schedule_delayed_work(&ieee->associate_procedure_wq, 0);
16411640
else
16421641
rtllib_associate_abort(ieee);
16431642
}

0 commit comments

Comments
 (0)