Commit 77cedcc0 authored by Darshan D V's avatar Darshan D V Committed by Greg Kroah-Hartman

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: default avatarDarshan D V <darshandv10@gmail.com>
Link: https://lore.kernel.org/r/20200720091442.19532-1-darshandv10@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 15d25ed7
...@@ -278,7 +278,7 @@ static int rtllib_ccmp_decrypt(struct sk_buff *skb, int hdr_len, void *priv) ...@@ -278,7 +278,7 @@ static int rtllib_ccmp_decrypt(struct sk_buff *skb, int hdr_len, void *priv)
int aad_len, ret; int aad_len, ret;
req = aead_request_alloc(key->tfm, GFP_ATOMIC); req = aead_request_alloc(key->tfm, GFP_ATOMIC);
if(!req) if (!req)
return -ENOMEM; return -ENOMEM;
aad_len = ccmp_init_iv_and_aad(hdr, pn, iv, aad); aad_len = ccmp_init_iv_and_aad(hdr, pn, iv, aad);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment