Commit a090189c authored by simran singhal's avatar simran singhal Committed by Greg Kroah-Hartman

staging: rtl8192u: Fixing multiple assignments

This patch modifies the assignments into single assignments.
Signed-off-by: default avatarsimran singhal <singhalsimran0@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5f7a9da0
...@@ -181,7 +181,8 @@ static void ccmp_init_blocks(struct crypto_tfm *tfm, ...@@ -181,7 +181,8 @@ static void ccmp_init_blocks(struct crypto_tfm *tfm,
xor_block(auth, &aad[AES_BLOCK_LEN], AES_BLOCK_LEN); xor_block(auth, &aad[AES_BLOCK_LEN], AES_BLOCK_LEN);
ieee80211_ccmp_aes_encrypt(tfm, auth, auth); ieee80211_ccmp_aes_encrypt(tfm, auth, auth);
b0[0] &= 0x07; b0[0] &= 0x07;
b0[14] = b0[15] = 0; b0[14] = 0;
b0[15] = 0;
ieee80211_ccmp_aes_encrypt(tfm, b0, s0); ieee80211_ccmp_aes_encrypt(tfm, b0, s0);
} }
......
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