[PATCH] arch/i386/crypto/aes.c: fix sparse warnings

Signed-off-by: Alexey Dobriyan <adobriyan@mail.ru>
Signed-off-by: Domen Puncer <domen@coderock.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Domen Puncer and committed by Linus Torvalds 40086ea1 c7c58445

+1 -1
+1 -1
arch/i386/crypto/aes.c
··· 59 59 }; 60 60 61 61 #define WPOLY 0x011b 62 - #define u32_in(x) le32_to_cpu(*(const u32 *)(x)) 62 + #define u32_in(x) le32_to_cpup((const __le32 *)(x)) 63 63 #define bytes2word(b0, b1, b2, b3) \ 64 64 (((u32)(b3) << 24) | ((u32)(b2) << 16) | ((u32)(b1) << 8) | (b0)) 65 65