Staging: rtl8192e: Fix statement broken across 2 lines in rtllib_rx_assoc_resp()
authorTree Davies <tdavies@darkphysics.net>
Sat, 23 Dec 2023 01:59:30 +0000 (17:59 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 23 Dec 2023 13:10:52 +0000 (14:10 +0100)
Join 2 lines, so that statment resides on one line, to fix Warning: Lines
should not end with a '('

Signed-off-by: Tree Davies <tdavies@darkphysics.net>
Link: https://lore.kernel.org/r/20231223015942.418263-9-tdavies@darkphysics.net
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtllib_softmac.c

index c7224de279f5475b493d9126ca9ed9e03a1fede5..bdf4f732696ec205c1e2abbdff1d55557425a48f 100644 (file)
@@ -1636,8 +1636,7 @@ rtllib_rx_assoc_resp(struct rtllib_device *ieee, struct sk_buff *skb,
                                    "Association response status code 0x%x\n",
                                    errcode);
                        if (ieee->AsocRetryCount < RT_ASOC_RETRY_LIMIT)
-                               schedule_delayed_work(
-                                        &ieee->associate_procedure_wq, 0);
+                               schedule_delayed_work(&ieee->associate_procedure_wq, 0);
                        else
                                rtllib_associate_abort(ieee);
                }