Commit 2ade8147 authored by Andi Kleen's avatar Andi Kleen Committed by Linus Torvalds

[PATCH] x86-64: clean up local_add/sub arguments

Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 4b6a455c
...@@ -29,7 +29,7 @@ static __inline__ void local_dec(local_t *v) ...@@ -29,7 +29,7 @@ static __inline__ void local_dec(local_t *v)
:"m" (v->counter)); :"m" (v->counter));
} }
static __inline__ void local_add(unsigned long i, local_t *v) static __inline__ void local_add(unsigned int i, local_t *v)
{ {
__asm__ __volatile__( __asm__ __volatile__(
"addl %1,%0" "addl %1,%0"
...@@ -37,7 +37,7 @@ static __inline__ void local_add(unsigned long i, local_t *v) ...@@ -37,7 +37,7 @@ static __inline__ void local_add(unsigned long i, local_t *v)
:"ir" (i), "m" (v->counter)); :"ir" (i), "m" (v->counter));
} }
static __inline__ void local_sub(unsigned long i, local_t *v) static __inline__ void local_sub(unsigned int i, local_t *v)
{ {
__asm__ __volatile__( __asm__ __volatile__(
"subl %1,%0" "subl %1,%0"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment