staging: rtl8192u: Fixing multiple assignments

This patch modifies the assignments into single assignments.

Signed-off-by: simran singhal <singhalsimran0@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
simran singhal 2017-02-12 02:07:38 +05:30 committed by Greg Kroah-Hartman
parent 5f7a9da0e2
commit a090189cd0

View File

@ -181,7 +181,8 @@ static void ccmp_init_blocks(struct crypto_tfm *tfm,
xor_block(auth, &aad[AES_BLOCK_LEN], AES_BLOCK_LEN);
ieee80211_ccmp_aes_encrypt(tfm, auth, auth);
b0[0] &= 0x07;
b0[14] = b0[15] = 0;
b0[14] = 0;
b0[15] = 0;
ieee80211_ccmp_aes_encrypt(tfm, b0, s0);
}