aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/android/binder.c
diff options
context:
space:
mode:
authorMathieu Maret <mathieu.maret@gmail.com>2014-04-15 12:03:05 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-04-16 20:17:31 -0700
commit36c89c0a6bebafdde13099229dfe541380ce7612 (patch)
treec75e61ae0bacf6a76afc3230a4f6173eb126b53f /drivers/staging/android/binder.c
parentstaging: android: uapi: fix coding style (diff)
downloadlinux-dev-36c89c0a6bebafdde13099229dfe541380ce7612.tar.xz
linux-dev-36c89c0a6bebafdde13099229dfe541380ce7612.zip
staging: binder: add __user annotation in binder.c
Add __user to binder_version to correct sparse warning. Reduce line size to fit to coding style. Signed-off-by: Mathieu Maret <mathieu.maret@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/android/binder.c')
-rw-r--r--drivers/staging/android/binder.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/staging/android/binder.c b/drivers/staging/android/binder.c
index cfe4bc8f05cb..1f5e2499ac1b 100644
--- a/drivers/staging/android/binder.c
+++ b/drivers/staging/android/binder.c
@@ -2683,16 +2683,20 @@ static long binder_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
binder_free_thread(proc, thread);
thread = NULL;
break;
- case BINDER_VERSION:
+ case BINDER_VERSION: {
+ struct binder_version __user *ver = ubuf;
+
if (size != sizeof(struct binder_version)) {
ret = -EINVAL;
goto err;
}
- if (put_user(BINDER_CURRENT_PROTOCOL_VERSION, &((struct binder_version *)ubuf)->protocol_version)) {
+ if (put_user(BINDER_CURRENT_PROTOCOL_VERSION,
+ &ver->protocol_version)) {
ret = -EINVAL;
goto err;
}
break;
+ }
default:
ret = -EINVAL;
goto err;