[PATCH] compat_sys_futex() warning fix

kernel/futex_compat.c: In function `compat_sys_futex':
kernel/futex_compat.c:140: warning: passing arg 1 of `do_futex' makes integer from pointer without a cast
kernel/futex_compat.c:140: warning: passing arg 5 of `do_futex' makes integer from pointer without a cast

Not sure what Ingo was thinking of here. Put the casts back in.

Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Andrew Morton and committed by
Linus Torvalds
ec7e15d6 4fa95ef6

+2 -1
+2 -1
kernel/futex_compat.c
··· 137 if (op >= FUTEX_REQUEUE) 138 val2 = (int) (unsigned long) utime; 139 140 - return do_futex(uaddr, op, val, timeout, uaddr2, val2, val3); 141 }
··· 137 if (op >= FUTEX_REQUEUE) 138 val2 = (int) (unsigned long) utime; 139 140 + return do_futex((unsigned long)uaddr, op, val, timeout, 141 + (unsigned long)uaddr2, val2, val3); 142 }