Skip to content

Commit

Permalink
[PATCH] geode-aes: use unsigned long for spin_lock_irqsave
Browse files Browse the repository at this point in the history
Signed-off-by: Alexey Dobriyan <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Alexey Dobriyan authored and Linus Torvalds committed Mar 6, 2007
1 parent 57bf63d commit 5efee17
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/crypto/geode-aes.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,8 @@ do_crypt(void *src, void *dst, int len, u32 flags)
static unsigned int
geode_aes_crypt(struct geode_aes_op *op)
{

u32 flags = 0;
int iflags;
unsigned long iflags;

if (op->len == 0 || op->src == op->dst)
return 0;
Expand Down

0 comments on commit 5efee17

Please sign in to comment.