mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-03 11:12:01 -04:00
staging: rtl8192e: fix alignment to match open parenthesis
Fix alignemnt to match opening parenthesis as suggested by Linux kernel coding-style. This issue is reported by checkpatch. Signed-off-by: Khadija Kamran <kamrankhadijadj@gmail.com> Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/76814f7a2a026ef195334b0c42ecd2aeb8e8ea40.1680445545.git.kamrankhadijadj@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
f395d3f9d2
commit
7cf3f17b58
@@ -332,7 +332,7 @@ static int rtllib_ccmp_set_key(void *key, int len, u8 *seq, void *priv)
|
||||
data->rx_pn[5] = seq[0];
|
||||
}
|
||||
if (crypto_aead_setauthsize(data->tfm, CCMP_MIC_LEN) ||
|
||||
crypto_aead_setkey(data->tfm, data->key, CCMP_TK_LEN))
|
||||
crypto_aead_setkey(data->tfm, data->key, CCMP_TK_LEN))
|
||||
return -1;
|
||||
} else if (len == 0) {
|
||||
data->key_set = 0;
|
||||
|
||||
Reference in New Issue
Block a user