projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c7c5844
)
[PATCH] arch/i386/crypto/aes.c: fix sparse warnings
author
Domen Puncer
<domen@coderock.org>
Sat, 25 Jun 2005 21:58:46 +0000
(14:58 -0700)
committer
Linus Torvalds
<torvalds@ppc970.osdl.org>
Sat, 25 Jun 2005 23:24:59 +0000
(16:24 -0700)
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>
arch/i386/crypto/aes.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/i386/crypto/aes.c
b/arch/i386/crypto/aes.c
index 1019430fc1f11015128f2f22fdf44f7d24330ab3..88ee85c3b43be94868e0229286a6db51cc9229cf 100644
(file)
--- a/
arch/i386/crypto/aes.c
+++ b/
arch/i386/crypto/aes.c
@@
-59,7
+59,7
@@
struct aes_ctx {
};
#define WPOLY 0x011b
-#define u32_in(x) le32_to_cpu
(*(const u
32 *)(x))
+#define u32_in(x) le32_to_cpu
p((const __le
32 *)(x))
#define bytes2word(b0, b1, b2, b3) \
(((u32)(b3) << 24) | ((u32)(b2) << 16) | ((u32)(b1) << 8) | (b0))