diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2007-03-06 04:42:13 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-03-06 12:30:25 -0500 |
commit | 5efee174f8a101cafb1607d2b629bed353701457 (patch) | |
tree | 0a4bc4cdb2f28dbc9160e57c71ed55892b89140f /drivers/crypto | |
parent | 57bf63d69cb6b7064e6fec5e83da4e1918168282 (diff) |
[PATCH] geode-aes: use unsigned long for spin_lock_irqsave
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/crypto')
-rw-r--r-- | drivers/crypto/geode-aes.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/crypto/geode-aes.c b/drivers/crypto/geode-aes.c index 0eb62841e9b0..6d3840e629de 100644 --- a/drivers/crypto/geode-aes.c +++ b/drivers/crypto/geode-aes.c | |||
@@ -99,9 +99,8 @@ do_crypt(void *src, void *dst, int len, u32 flags) | |||
99 | static unsigned int | 99 | static unsigned int |
100 | geode_aes_crypt(struct geode_aes_op *op) | 100 | geode_aes_crypt(struct geode_aes_op *op) |
101 | { | 101 | { |
102 | |||
103 | u32 flags = 0; | 102 | u32 flags = 0; |
104 | int iflags; | 103 | unsigned long iflags; |
105 | 104 | ||
106 | if (op->len == 0 || op->src == op->dst) | 105 | if (op->len == 0 || op->src == op->dst) |
107 | return 0; | 106 | return 0; |