staging: rtl8192e: add space before open parenthesis
authorDarshan D V <darshandv10@gmail.com>
Mon, 20 Jul 2020 09:14:41 +0000 (14:44 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 21 Jul 2020 14:52:47 +0000 (16:52 +0200)
Fix the coding style error by adding a space before
open parenthesis '(' in a conditional statement.

Signed-off-by: Darshan D V <darshandv10@gmail.com>
Link: https://lore.kernel.org/r/20200720091442.19532-1-darshandv10@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtllib_crypt_ccmp.c

index 0cbf4a1a326b3fa378f6430210d1adda090e0217..b2af802b945151416c5d08fa4608d44d23286f03 100644 (file)
@@ -278,7 +278,7 @@ static int rtllib_ccmp_decrypt(struct sk_buff *skb, int hdr_len, void *priv)
                int aad_len, ret;
 
                req = aead_request_alloc(key->tfm, GFP_ATOMIC);
-               if(!req)
+               if (!req)
                        return -ENOMEM;
 
                aad_len = ccmp_init_iv_and_aad(hdr, pn, iv, aad);