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

2005-03-20 Thread Domen Puncer

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.0 
+0100
+++ kj-domen/crypto/sha512.c2005-03-20 12:11:34.0 +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)
_
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


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

2005-03-20 Thread Domen Puncer

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.0 
+0100
+++ kj-domen/crypto/sha512.c2005-03-20 12:11:34.0 +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)
_
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/