From: Bojan Prtvar Date: Sun, 1 Sep 2013 18:30:38 +0000 (+0200) Subject: Staging: android: add __user annotation in binder.c X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=308fbd8ac0b0078dba29cad027e5b454aac13a6a;p=deliverable%2Flinux.git Staging: android: add __user annotation in binder.c This fixes the following sparse error drivers/staging/android/binder.c:1795:36: error: incompatible types in comparison expression (different address spaces) Signed-off-by: Bojan Prtvar Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/android/binder.c b/drivers/staging/android/binder.c index 98ac020bf912..19e6ba618f83 100644 --- a/drivers/staging/android/binder.c +++ b/drivers/staging/android/binder.c @@ -1773,7 +1773,7 @@ int binder_thread_write(struct binder_proc *proc, struct binder_thread *thread, case BC_INCREFS_DONE: case BC_ACQUIRE_DONE: { void __user *node_ptr; - void *cookie; + void __user *cookie; struct binder_node *node; if (get_user(node_ptr, (void * __user *)ptr))