Staging: rtl8192u: ieee80211: added missing space around '='

This patch fixes the following checkpatch error:
  - ERROR: spaces required around that '='

Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Kurt Kanzenbach 2015-10-28 14:01:03 +01:00 committed by Greg Kroah-Hartman
parent df58f2b9c8
commit a4255e7c92
1 changed files with 1 additions and 1 deletions

View File

@ -360,7 +360,7 @@ static int ieee80211_tkip_encrypt(struct sk_buff *skb, int hdr_len, void *priv)
icv[3] = crc >> 24;
crypto_blkcipher_setkey(tkey->tx_tfm_arc4, rc4key, 16);
sg_init_one(&sg, pos, len+4);
ret= crypto_blkcipher_encrypt(&desc, &sg, &sg, len + 4);
ret = crypto_blkcipher_encrypt(&desc, &sg, &sg, len + 4);
}
tkey->tx_iv16++;