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

From: domen
Date: Sat Mar 19 2005 - 08:28:43 EST





Signed-off-by: Domen Puncer <domen@xxxxxxxxxxxx>
---


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)
_
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/