summaryrefslogtreecommitdiff
path: root/drivers/staging/vt6655/aes_ccmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/vt6655/aes_ccmp.c')
-rw-r--r--drivers/staging/vt6655/aes_ccmp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/vt6655/aes_ccmp.c b/drivers/staging/vt6655/aes_ccmp.c
index a1aadcbb0aea..ed83de42f27b 100644
--- a/drivers/staging/vt6655/aes_ccmp.c
+++ b/drivers/staging/vt6655/aes_ccmp.c
@@ -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]);