diff options
author | Darshan D V <[email protected]> | 2020-07-20 14:44:41 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2020-07-21 16:52:47 +0200 |
commit | 77cedcc0b31af6a6cb4ce64af2ee2a3ff2152944 (patch) | |
tree | cea913ba3da28144768f0df3f6a77328ff59d114 | |
parent | 15d25ed790504a5fb0bb3cea8088b3e087eba0e7 (diff) |
staging: rtl8192e: add space before open parenthesis
Fix the coding style error by adding a space before
open parenthesis '(' in a conditional statement.
Signed-off-by: Darshan D V <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/rtl8192e/rtllib_crypt_ccmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8192e/rtllib_crypt_ccmp.c b/drivers/staging/rtl8192e/rtllib_crypt_ccmp.c index 0cbf4a1a326b..b2af802b9451 100644 --- a/drivers/staging/rtl8192e/rtllib_crypt_ccmp.c +++ b/drivers/staging/rtl8192e/rtllib_crypt_ccmp.c @@ -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); |