Commit e84c8932 authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Mauro Carvalho Chehab

media: v4l2-core: fix whitespace damage in video_get_user()

The initialization was indented with an extra tab in most lines,
remove them to get the normal coding style.
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Reviewed-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 7b53cca7
...@@ -3142,18 +3142,18 @@ static int video_get_user(void __user *arg, void *parg, ...@@ -3142,18 +3142,18 @@ static int video_get_user(void __user *arg, void *parg,
*vb = (struct v4l2_buffer) { *vb = (struct v4l2_buffer) {
.index = vb32.index, .index = vb32.index,
.type = vb32.type, .type = vb32.type,
.bytesused = vb32.bytesused, .bytesused = vb32.bytesused,
.flags = vb32.flags, .flags = vb32.flags,
.field = vb32.field, .field = vb32.field,
.timestamp.tv_sec = vb32.timestamp.tv_sec, .timestamp.tv_sec = vb32.timestamp.tv_sec,
.timestamp.tv_usec = vb32.timestamp.tv_usec, .timestamp.tv_usec = vb32.timestamp.tv_usec,
.timecode = vb32.timecode, .timecode = vb32.timecode,
.sequence = vb32.sequence, .sequence = vb32.sequence,
.memory = vb32.memory, .memory = vb32.memory,
.m.userptr = vb32.m.userptr, .m.userptr = vb32.m.userptr,
.length = vb32.length, .length = vb32.length,
.request_fd = vb32.request_fd, .request_fd = vb32.request_fd,
}; };
break; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment