Commit 6caba26f authored by Colin Ian King's avatar Colin Ian King Committed by Greg Kroah-Hartman

staging: rtl8723bs: fix indentation issue

There is a block of statements that are indented
too deeply, remove the extraneous tabs.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20191114095747.132407-1-colin.king@canonical.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent abc16585
...@@ -1621,12 +1621,12 @@ static sint aes_decipher(u8 *key, uint hdrlen, ...@@ -1621,12 +1621,12 @@ static sint aes_decipher(u8 *key, uint hdrlen,
pn_vector, i + 1, pn_vector, i + 1,
frtype); /* add for CONFIG_IEEE80211W, none 11w also can use */ frtype); /* add for CONFIG_IEEE80211W, none 11w also can use */
aes128k128d(key, ctr_preload, aes_out); aes128k128d(key, ctr_preload, aes_out);
bitwise_xor(aes_out, &pframe[payload_index], chain_buffer); bitwise_xor(aes_out, &pframe[payload_index], chain_buffer);
for (j = 0; j < 16; j++) for (j = 0; j < 16; j++)
pframe[payload_index++] = chain_buffer[j]; pframe[payload_index++] = chain_buffer[j];
} }
if (payload_remainder > 0) { if (payload_remainder > 0) {
/* If there is a short final block, then pad it,*/ /* If there is a short final block, then pad it,*/
......
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