[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20190703134935.24747-1-fatihaltinpinar@gmail.com>
Date: Wed, 3 Jul 2019 16:49:35 +0300
From: Fatih ALTINPINAR <fatihaltinpinar@...il.com>
To: herbert@...dor.apana.org.au
Cc: davem@...emloft.net, linux-crypto@...r.kernel.org,
linux-kernel@...r.kernel.org,
Fatih ALTINPINAR <fatihaltinpinar@...il.com>
Subject: [PATCH] Crypto: aegis128l: fix a coding stlye issue
From: Fatih ALTINPINAR <fatihaltinpinar@...il.com>
Fixed a coding style issue. Removed curly brackets of an one
line for statement.
Signed-of-by: Fatih ALTINPINAR <fatihaltinpinar@...il.com>
---
crypto/aegis128l.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/crypto/aegis128l.c b/crypto/aegis128l.c
index 9bca3d619a22..6c70e718c9c4 100644
--- a/crypto/aegis128l.c
+++ b/crypto/aegis128l.c
@@ -104,9 +104,8 @@ static void crypto_aegis128l_init(struct aegis_state *state,
crypto_aegis_block_xor(&state->blocks[6], &crypto_aegis_const[1]);
crypto_aegis_block_xor(&state->blocks[7], &crypto_aegis_const[0]);
- for (i = 0; i < 10; i++) {
+ for (i = 0; i < 10; i++)
crypto_aegis128l_update_a(state, &chunk);
- }
}
static void crypto_aegis128l_ad(struct aegis_state *state,
--
2.17.1
Powered by blists - more mailing lists