mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 04:21:03 -04:00
staging:vt6655: Fix open brace placement related error
This patch fixes the following checkpatch error in aes_ccmp.c:
ERROR: that open brace { should be on the previous line
Signed-off-by: Jelena Bjelja <jelena.bjelja.ing@gmail.com>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
This commit is contained in:
committed by
Peter P Waskiewicz Jr
parent
5ae7437ead
commit
9c45c42a54
@@ -204,8 +204,7 @@ static void AESv128(unsigned char *key, unsigned char *data, unsigned char *ciph
|
||||
SubBytes(ciphertext, TmpdataA);
|
||||
ShiftRows(TmpdataA, TmpdataB);
|
||||
xor_128(TmpdataB, abyRoundKey, ciphertext);
|
||||
} else /* round 1 ~ 9 */
|
||||
{
|
||||
} else /* round 1 ~ 9 */{
|
||||
SubBytes(ciphertext, TmpdataA);
|
||||
ShiftRows(TmpdataA, TmpdataB);
|
||||
MixColumns(&TmpdataB[0], &TmpdataA[0]);
|
||||
|
||||
Reference in New Issue
Block a user