summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorDarshan D V <darshandv10@gmail.com>2020-07-20 14:44:42 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-07-21 16:52:47 +0200
commit846fbc621f24e2f00de3e27d6bbd0fe4638b7e01 (patch)
tree42f191a00dd56a49c99ea546624fc05ce21de8ce /drivers
parent77cedcc0b31af6a6cb4ce64af2ee2a3ff2152944 (diff)
staging: rtl8192e: add proper code indent
As the code indent for a conditional statement is not according to the preferred coding style for the linux kernel, add code indent as necessary after a conditional statement. Signed-off-by: Darshan D V <darshandv10@gmail.com> Link: https://lore.kernel.org/r/20200720091442.19532-2-darshandv10@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/rtl8192e/rtllib_crypt_ccmp.c2
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 b2af802b9451..b60e2a109ce4 100644
--- a/drivers/staging/rtl8192e/rtllib_crypt_ccmp.c
+++ b/drivers/staging/rtl8192e/rtllib_crypt_ccmp.c
@@ -337,7 +337,7 @@ static int rtllib_ccmp_set_key(void *key, int len, u8 *seq, void *priv)
}
if (crypto_aead_setauthsize(data->tfm, CCMP_MIC_LEN) ||
crypto_aead_setkey(data->tfm, data->key, CCMP_TK_LEN))
- return -1;
+ return -1;
} else if (len == 0) {
data->key_set = 0;
} else {