linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Crypto: aegis128l: fix a coding stlye issue
@ 2019-07-03 13:49 Fatih ALTINPINAR
  0 siblings, 0 replies; only message in thread
From: Fatih ALTINPINAR @ 2019-07-03 13:49 UTC (permalink / raw)
  To: herbert; +Cc: davem, linux-crypto, linux-kernel, Fatih ALTINPINAR

From: Fatih ALTINPINAR <fatihaltinpinar@gmail.com>

Fixed a coding style issue. Removed curly brackets of an one
line for statement.

Signed-of-by: Fatih ALTINPINAR <fatihaltinpinar@gmail.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


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-07-03 13:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-03 13:49 [PATCH] Crypto: aegis128l: fix a coding stlye issue Fatih ALTINPINAR

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).