[media] media/v4l2-compat-ioctl32: Simple stylechecks
authorRicardo Ribalda <ricardo.ribalda@gmail.com>
Fri, 21 Aug 2015 13:19:22 +0000 (10:19 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Thu, 1 Oct 2015 10:51:43 +0000 (07:51 -0300)
The next patches on the series need this modifications to pass clean
checkpath.pl.

Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/v4l2-core/v4l2-compat-ioctl32.c

index ac3662668871fecc6d25a3e9f569fd8e4c60cb9a..d032e9a2b212735a25fac4297b5f51e956bf0b01 100644 (file)
@@ -628,11 +628,11 @@ static inline int put_v4l2_input32(struct v4l2_input *kp, struct v4l2_input32 __
 }
 
 struct v4l2_ext_controls32 {
-       __u32 ctrl_class;
-       __u32 count;
-       __u32 error_idx;
-       __u32 reserved[2];
-       compat_caddr_t controls; /* actually struct v4l2_ext_control32 * */
+       __u32 ctrl_class;
+       __u32 count;
+       __u32 error_idx;
+       __u32 reserved[2];
+       compat_caddr_t controls; /* actually struct v4l2_ext_control32 * */
 };
 
 struct v4l2_ext_control32 {
@@ -674,7 +674,8 @@ static int get_v4l2_ext_controls32(struct v4l2_ext_controls *kp, struct v4l2_ext
                get_user(kp->ctrl_class, &up->ctrl_class) ||
                get_user(kp->count, &up->count) ||
                get_user(kp->error_idx, &up->error_idx) ||
-               copy_from_user(kp->reserved, up->reserved, sizeof(kp->reserved)))
+               copy_from_user(kp->reserved, up->reserved,
+                              sizeof(kp->reserved)))
                        return -EFAULT;
        n = kp->count;
        if (n == 0) {