diff mbox series

[v3,3/8] media: v4l2-core: fix whitespace damage in video_get_user()

Message ID 20210614103409.3154127-4-arnd@kernel.org
State New
Headers show
Series media: v4l2: compat ioctl fixes | expand

Commit Message

Arnd Bergmann June 14, 2021, 10:34 a.m. UTC
From: Arnd Bergmann <arnd@arndb.de>


The initialization was indented with an extra tab in most lines,
remove them to get the normal coding style.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>

---
 drivers/media/v4l2-core/v4l2-ioctl.c | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

-- 
2.29.2

Comments

Laurent Pinchart June 14, 2021, 4:58 p.m. UTC | #1
Hi Arnd,

Thank you for the patch.

On Mon, Jun 14, 2021 at 12:34:04PM +0200, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>

> 

> The initialization was indented with an extra tab in most lines,

> remove them to get the normal coding style.

> 

> Signed-off-by: Arnd Bergmann <arnd@arndb.de>


Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>


> ---

>  drivers/media/v4l2-core/v4l2-ioctl.c | 24 ++++++++++++------------

>  1 file changed, 12 insertions(+), 12 deletions(-)

> 

> diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c b/drivers/media/v4l2-core/v4l2-ioctl.c

> index f19e56116e53..d94389145479 100644

> --- a/drivers/media/v4l2-core/v4l2-ioctl.c

> +++ b/drivers/media/v4l2-core/v4l2-ioctl.c

> @@ -3142,18 +3142,18 @@ static int video_get_user(void __user *arg, void *parg,

>  

>  			*vb = (struct v4l2_buffer) {

>  				.index		= vb32.index,

> -					.type		= vb32.type,

> -					.bytesused	= vb32.bytesused,

> -					.flags		= vb32.flags,

> -					.field		= vb32.field,

> -					.timestamp.tv_sec	= vb32.timestamp.tv_sec,

> -					.timestamp.tv_usec	= vb32.timestamp.tv_usec,

> -					.timecode	= vb32.timecode,

> -					.sequence	= vb32.sequence,

> -					.memory		= vb32.memory,

> -					.m.userptr	= vb32.m.userptr,

> -					.length		= vb32.length,

> -					.request_fd	= vb32.request_fd,

> +				.type		= vb32.type,

> +				.bytesused	= vb32.bytesused,

> +				.flags		= vb32.flags,

> +				.field		= vb32.field,

> +				.timestamp.tv_sec	= vb32.timestamp.tv_sec,

> +				.timestamp.tv_usec	= vb32.timestamp.tv_usec,

> +				.timecode	= vb32.timecode,

> +				.sequence	= vb32.sequence,

> +				.memory		= vb32.memory,

> +				.m.userptr	= vb32.m.userptr,

> +				.length		= vb32.length,

> +				.request_fd	= vb32.request_fd,

>  			};

>  			break;

>  		}


-- 
Regards,

Laurent Pinchart
diff mbox series

Patch

diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c b/drivers/media/v4l2-core/v4l2-ioctl.c
index f19e56116e53..d94389145479 100644
--- a/drivers/media/v4l2-core/v4l2-ioctl.c
+++ b/drivers/media/v4l2-core/v4l2-ioctl.c
@@ -3142,18 +3142,18 @@  static int video_get_user(void __user *arg, void *parg,
 
 			*vb = (struct v4l2_buffer) {
 				.index		= vb32.index,
-					.type		= vb32.type,
-					.bytesused	= vb32.bytesused,
-					.flags		= vb32.flags,
-					.field		= vb32.field,
-					.timestamp.tv_sec	= vb32.timestamp.tv_sec,
-					.timestamp.tv_usec	= vb32.timestamp.tv_usec,
-					.timecode	= vb32.timecode,
-					.sequence	= vb32.sequence,
-					.memory		= vb32.memory,
-					.m.userptr	= vb32.m.userptr,
-					.length		= vb32.length,
-					.request_fd	= vb32.request_fd,
+				.type		= vb32.type,
+				.bytesused	= vb32.bytesused,
+				.flags		= vb32.flags,
+				.field		= vb32.field,
+				.timestamp.tv_sec	= vb32.timestamp.tv_sec,
+				.timestamp.tv_usec	= vb32.timestamp.tv_usec,
+				.timecode	= vb32.timecode,
+				.sequence	= vb32.sequence,
+				.memory		= vb32.memory,
+				.m.userptr	= vb32.m.userptr,
+				.length		= vb32.length,
+				.request_fd	= vb32.request_fd,
 			};
 			break;
 		}