2010-02-10 01:18:27

by Richard Hartmann

[permalink] [raw]
Subject: [PATCH 1/1] CRYPTO: Fix checkpatch errors & warnings in arc4.c

From: Richard Hartmann <[email protected]>


Signed-off-by: Richard Hartmann <[email protected]>
---
crypto/arc4.c | 9 ++++-----
1 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/crypto/arc4.c b/crypto/arc4.c
index 8be47e1..8a61fa2 100644
--- a/crypto/arc4.c
+++ b/crypto/arc4.c
@@ -1,4 +1,4 @@
-/*
+/*
* Cryptographic API
*
* ARC4 Cipher Algorithm
@@ -33,16 +33,15 @@ static int arc4_set_key(struct crypto_tfm *tfm, const u8 *in_key,
ctx->x = 1;
ctx->y = 0;

- for(i = 0; i < 256; i++)
+ for (i = 0; i < 256; i++)
ctx->S[i] = i;

- for(i = 0; i < 256; i++)
- {
+ for (i = 0; i < 256; i++) {
u8 a = ctx->S[i];
j = (j + in_key[k] + a) & 0xff;
ctx->S[i] = ctx->S[j];
ctx->S[j] = a;
- if(++k >= key_len)
+ if (++k >= key_len)
k = 0;
}

--
1.6.6.1



Subject: Re: [PATCH 1/1] CRYPTO: Fix checkpatch errors & warnings in arc4.c

* [email protected] | 2010-02-10 02:17:39 [+0100]:

>From: Richard Hartmann <[email protected]>
>
>
>Signed-off-by: Richard Hartmann <[email protected]>
>---
> crypto/arc4.c | 9 ++++-----
> 1 files changed, 4 insertions(+), 5 deletions(-)

I've made this whitespace fixes and a few others while re-writting it
yesterday. So I've taken care of this allready.

Sebastian

2010-02-10 13:47:37

by Richard Hartmann

[permalink] [raw]
Subject: Re: [PATCH 1/1] CRYPTO: Fix checkpatch errors & warnings in arc4.c

On Wed, Feb 10, 2010 at 10:28, Sebastian Andrzej Siewior
<[email protected]> wrote:

> I've made this whitespace fixes and a few others while re-writting it
> yesterday. So I've taken care of this allready.

OK. Thanks for getting back to me :)


Richard