2005-03-19 13:24:20

by Domen Puncer

[permalink] [raw]
Subject: [patch 2/4] crypto/sha512.c: fix sparse warnings




Signed-off-by: Domen Puncer <[email protected]>
---


kj-domen/crypto/sha512.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN crypto/sha512.c~sparse-crypto_sha512 crypto/sha512.c
--- kj/crypto/sha512.c~sparse-crypto_sha512 2005-03-18 20:05:35.000000000 +0100
+++ kj-domen/crypto/sha512.c 2005-03-18 20:05:35.000000000 +0100
@@ -105,7 +105,7 @@ static const u64 sha512_K[80] = {

static inline void LOAD_OP(int I, u64 *W, const u8 *input)
{
- W[I] = __be64_to_cpu( ((u64*)(input))[I] );
+ W[I] = __be64_to_cpu( ((__be64*)(input))[I] );
}

static inline void BLEND_OP(int I, u64 *W)
_


2005-03-20 11:23:03

by Domen Puncer

[permalink] [raw]
Subject: Re: [patch 2/4 with proper signed-off] crypto/sha512.c: fix sparse warnings


Signed-off-by: Alexey Dobriyan <[email protected]>
Signed-off-by: Domen Puncer <[email protected]>
---


kj-domen/crypto/sha512.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN crypto/sha512.c~sparse-crypto_sha512 crypto/sha512.c
--- kj/crypto/sha512.c~sparse-crypto_sha512 2005-03-20 12:11:34.000000000 +0100
+++ kj-domen/crypto/sha512.c 2005-03-20 12:11:34.000000000 +0100
@@ -105,7 +105,7 @@ static const u64 sha512_K[80] = {

static inline void LOAD_OP(int I, u64 *W, const u8 *input)
{
- W[I] = __be64_to_cpu( ((u64*)(input))[I] );
+ W[I] = __be64_to_cpu( ((__be64*)(input))[I] );
}

static inline void BLEND_OP(int I, u64 *W)
_