diff options
author | Colin Ian King <colin.king@canonical.com> | 2019-11-14 09:57:47 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-11-15 14:11:23 +0800 |
commit | 6caba26ff7210e4591f6793e6597d5236c74c4bb (patch) | |
tree | a19f49e6a7fc113a3c80f5be963ea814191121e7 /drivers/staging | |
parent | abc16585919cfa6d10bc4295dd91dce51fdc6343 (diff) | |
download | linux-6caba26ff7210e4591f6793e6597d5236c74c4bb.tar.gz linux-6caba26ff7210e4591f6793e6597d5236c74c4bb.tar.bz2 linux-6caba26ff7210e4591f6793e6597d5236c74c4bb.zip |
staging: rtl8723bs: fix indentation issue
There is a block of statements that are indented
too deeply, remove the extraneous tabs.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20191114095747.132407-1-colin.king@canonical.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/rtl8723bs/core/rtw_security.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/rtl8723bs/core/rtw_security.c b/drivers/staging/rtl8723bs/core/rtw_security.c index 5aa5910687d1..9c4607114cea 100644 --- a/drivers/staging/rtl8723bs/core/rtw_security.c +++ b/drivers/staging/rtl8723bs/core/rtw_security.c @@ -1621,12 +1621,12 @@ static sint aes_decipher(u8 *key, uint hdrlen, pn_vector, i + 1, frtype); /* add for CONFIG_IEEE80211W, none 11w also can use */ - aes128k128d(key, ctr_preload, aes_out); - bitwise_xor(aes_out, &pframe[payload_index], chain_buffer); + aes128k128d(key, ctr_preload, aes_out); + bitwise_xor(aes_out, &pframe[payload_index], chain_buffer); - for (j = 0; j < 16; j++) - pframe[payload_index++] = chain_buffer[j]; - } + for (j = 0; j < 16; j++) + pframe[payload_index++] = chain_buffer[j]; + } if (payload_remainder > 0) { /* If there is a short final block, then pad it,*/ |