mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] Correcting some style issues
@ 2012-02-02 13:40 Tristan Pourcelot
  2012-02-05  4:14 ` Herbert Xu
  0 siblings, 1 reply; 4+ messages in thread
From: Tristan Pourcelot @ 2012-02-02 13:40 UTC (permalink / raw)
  To: davem, herbert, linux-geode; +Cc: linux-kernel

>From d50e5530201aa02a5232ca9f2458a7fdd18de374 Mon Sep 17 00:00:00 2001
From: Tristan Pourcelot <tristan.pourcelot@gmail.com>
Date: Thu, 2 Feb 2012 14:01:03 +0100
Subject: [PATCH] Correcting some style errors in
 drivers/crypto/geode-aes.c 
Signed-off-by: Tristan Pourcelot <tristan.pourcelot@gmail.com>

---
 drivers/crypto/geode-aes.c |   72
++++++++++++++++++++++----------------------
 1 files changed, 36 insertions(+), 36 deletions(-)

diff --git a/drivers/crypto/geode-aes.c b/drivers/crypto/geode-aes.c
index 2addf1a..e325929 100644
--- a/drivers/crypto/geode-aes.c
+++ b/drivers/crypto/geode-aes.c
@@ -282,21 +282,21 @@ static struct crypto_alg geode_alg = {
 	.cra_driver_name	=	"geode-aes",
 	.cra_priority		=	300,
 	.cra_alignmask		=	15,
-	.cra_flags			=	CRYPTO_ALG_TYPE_CIPHER |
-							CRYPTO_ALG_NEED_FALLBACK,
-	.cra_init			=	fallback_init_cip,
-	.cra_exit			=	fallback_exit_cip,
+	.cra_flags		=	CRYPTO_ALG_TYPE_CIPHER |
+		CRYPTO_ALG_NEED_FALLBACK,
+	.cra_init		=	fallback_init_cip,
+	.cra_exit		=	fallback_exit_cip,
 	.cra_blocksize		=	AES_MIN_BLOCK_SIZE,
 	.cra_ctxsize		=	sizeof(struct geode_aes_op),
-	.cra_module			=	THIS_MODULE,
-	.cra_list			=	LIST_HEAD_INIT(geode_alg.cra_list),
-	.cra_u				=	{
-		.cipher	=	{
-			.cia_min_keysize	=	AES_MIN_KEY_SIZE,
-			.cia_max_keysize	=	AES_MAX_KEY_SIZE,
-			.cia_setkey			=	geode_setkey_cip,
-			.cia_encrypt		=	geode_encrypt,
-			.cia_decrypt		=	geode_decrypt
+	.cra_module		=	THIS_MODULE,
+	.cra_list		=	LIST_HEAD_INIT(geode_alg.cra_list),
+	.cra_u			=	{
+	.cipher	=	{
+		.cia_min_keysize	=	AES_MIN_KEY_SIZE,
+		.cia_max_keysize	=	AES_MAX_KEY_SIZE,
+		.cia_setkey		=	geode_setkey_cip,
+		.cia_encrypt		=	geode_encrypt,
+		.cia_decrypt		=	geode_decrypt
 		}
 	}
 };
@@ -392,24 +392,24 @@ static struct crypto_alg geode_cbc_alg = {
 	.cra_name		=	"cbc(aes)",
 	.cra_driver_name	=	"cbc-aes-geode",
 	.cra_priority		=	400,
-	.cra_flags			=	CRYPTO_ALG_TYPE_BLKCIPHER |
-							CRYPTO_ALG_NEED_FALLBACK,
-	.cra_init			=	fallback_init_blk,
-	.cra_exit			=	fallback_exit_blk,
+	.cra_flags		=	CRYPTO_ALG_TYPE_BLKCIPHER |
+						CRYPTO_ALG_NEED_FALLBACK,
+	.cra_init		=	fallback_init_blk,
+	.cra_exit		=	fallback_exit_blk,
 	.cra_blocksize		=	AES_MIN_BLOCK_SIZE,
 	.cra_ctxsize		=	sizeof(struct geode_aes_op),
 	.cra_alignmask		=	15,
-	.cra_type			=	&crypto_blkcipher_type,
-	.cra_module			=	THIS_MODULE,
-	.cra_list			=	LIST_HEAD_INIT(geode_cbc_alg.cra_list),
-	.cra_u				=	{
+	.cra_type		=	&crypto_blkcipher_type,
+	.cra_module		=	THIS_MODULE,
+	.cra_list		=	LIST_HEAD_INIT(geode_cbc_alg.cra_list),
+	.cra_u			=	{
 		.blkcipher	=	{
 			.min_keysize	=	AES_MIN_KEY_SIZE,
 			.max_keysize	=	AES_MAX_KEY_SIZE,
-			.setkey			=	geode_setkey_blk,
-			.encrypt		=	geode_cbc_encrypt,
-			.decrypt		=	geode_cbc_decrypt,
-			.ivsize			=	AES_IV_LENGTH,
+			.setkey		=	geode_setkey_blk,
+			.encryp		=	geode_cbc_encrypt,
+			.decryp		=	geode_cbc_decrypt,
+			.ivsize		=	AES_IV_LENGTH,
 		}
 	}
 };
@@ -478,23 +478,23 @@ static struct crypto_alg geode_ecb_alg = {
 	.cra_name		=	"ecb(aes)",
 	.cra_driver_name	=	"ecb-aes-geode",
 	.cra_priority		=	400,
-	.cra_flags			=	CRYPTO_ALG_TYPE_BLKCIPHER |
-							CRYPTO_ALG_NEED_FALLBACK,
-	.cra_init			=	fallback_init_blk,
-	.cra_exit			=	fallback_exit_blk,
+	.cra_flags		=	CRYPTO_ALG_TYPE_BLKCIPHER |
+						CRYPTO_ALG_NEED_FALLBACK,
+	.cra_init		=	fallback_init_blk,
+	.cra_exit		=	fallback_exit_blk,
 	.cra_blocksize		=	AES_MIN_BLOCK_SIZE,
 	.cra_ctxsize		=	sizeof(struct geode_aes_op),
 	.cra_alignmask		=	15,
-	.cra_type			=	&crypto_blkcipher_type,
-	.cra_module			=	THIS_MODULE,
-	.cra_list			=	LIST_HEAD_INIT(geode_ecb_alg.cra_list),
-	.cra_u				=	{
+	.cra_type		=	&crypto_blkcipher_type,
+	.cra_module		=	THIS_MODULE,
+	.cra_list		=	LIST_HEAD_INIT(geode_ecb_alg.cra_list),
+	.cra_u			=	{
 		.blkcipher	=	{
 			.min_keysize	=	AES_MIN_KEY_SIZE,
 			.max_keysize	=	AES_MAX_KEY_SIZE,
-			.setkey			=	geode_setkey_blk,
-			.encrypt		=	geode_ecb_encrypt,
-			.decrypt		=	geode_ecb_decrypt,
+			.setkey		=	geode_setkey_blk,
+			.encrypt	=	geode_ecb_encrypt,
+			.decrypt	=	geode_ecb_decrypt,
 		}
 	}
 };
-- 
1.7.9




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-02-14  8:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-02-02 13:40 [PATCH] Correcting some style issues Tristan Pourcelot
2012-02-05  4:14 ` Herbert Xu
2012-02-07 21:06   ` [PATCH] [trivial] Correcting some style issues in drivers/crypto/geode-aes.c Tristan Pourcelot
2012-02-14  8:34     ` Herbert Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®