From 9c45c42a540293ca619c398385c363980667870b Mon Sep 17 00:00:00 2001 From: Jelena Bjelja Date: Fri, 14 Mar 2014 16:10:12 +0100 Subject: [PATCH] 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 Acked-by: Paul E. McKenney Signed-off-by: Peter P Waskiewicz Jr --- drivers/staging/vt6655/aes_ccmp.c | 3 +-- 1 file changed, 1 insertion(+), 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]); -- 2.39.2