From: Domen Puncer Signed-off-by: Domen Puncer Signed-off-by: Andrew Morton --- 25-akpm/arch/i386/crypto/aes.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/i386/crypto/aes.c~arch-i386-crypto-aesc-fix-sparse-warnings arch/i386/crypto/aes.c --- 25/arch/i386/crypto/aes.c~arch-i386-crypto-aesc-fix-sparse-warnings 2005-03-19 13:57:20.000000000 -0800 +++ 25-akpm/arch/i386/crypto/aes.c 2005-03-19 13:57:20.000000000 -0800 @@ -59,7 +59,7 @@ struct aes_ctx { }; #define WPOLY 0x011b -#define u32_in(x) le32_to_cpu(*(const u32 *)(x)) +#define u32_in(x) le32_to_cpup((const __le32 *)(x)) #define bytes2word(b0, b1, b2, b3) \ (((u32)(b3) << 24) | ((u32)(b2) << 16) | ((u32)(b1) << 8) | (b0)) _