aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2006-01-16 10:59:41 +0100
committerLinus Torvalds <torvalds@g5.osdl.org>2006-01-16 23:21:12 -0800
commitea13dbc89caecd982500894d4238766a6bd3c8f4 (patch)
tree80b6c17a1389cbab83e13d4f5d6034a756a0e798 /kernel
parentd669af9d5afb5bdb629f78d024b35e507465f570 (diff)
downloadlinux-ea13dbc89caecd982500894d4238766a6bd3c8f4.tar.gz
[PATCH] kernel/hrtimer.c sparse warning fix
fix the following sparse warning: kernel/hrtimer.c:665:34: warning: incorrect type in argument 2 (different address spaces) kernel/hrtimer.c:665:34: expected void const *from kernel/hrtimer.c:665:34: got struct timespec [noderef] *<noident><asn:1> kernel/hrtimer.c:664:2: warning: dereference of noderef expression Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/hrtimer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/hrtimer.c b/kernel/hrtimer.c
index f5ca61422331fb..f1c4155b49ac14 100644
--- a/kernel/hrtimer.c
+++ b/kernel/hrtimer.c
@@ -641,7 +641,8 @@ schedule_hrtimer_interruptible(struct hrtimer *timer,
static long __sched
nanosleep_restart(struct restart_block *restart, clockid_t clockid)
{
- struct timespec __user *rmtp, tu;
+ struct timespec __user *rmtp;
+ struct timespec tu;
void *rfn_save = restart->fn;
struct hrtimer timer;
ktime_t rem;