[PATCH 6/6] [media] rga: Remove surplus name initialization

2018-06-12 Thread Anton Leontiev
Name is already initialized by assignment from rga_videodev. Signed-off-by: Anton Leontiev --- drivers/media/platform/rockchip/rga/rga.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/media/platform/rockchip/rga/rga.c b/drivers/media/platform/rockchip/rga/rga.c index d508a8ba6f89

[PATCH 2/6] [media] ti-vpe: Remove surplus name initialization

2018-06-12 Thread Anton Leontiev
Name is already initialized by assignment from vpe_videodev. Signed-off-by: Anton Leontiev --- drivers/media/platform/ti-vpe/vpe.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/media/platform/ti-vpe/vpe.c b/drivers/media/platform/ti-vpe/vpe.c index e395aa85c8ad..de968295ca7d

[PATCH 3/6] [media] s5p-g2d: Remove surplus name initialization

2018-06-12 Thread Anton Leontiev
Name is already initialized by assignment from g2d_videodev. Signed-off-by: Anton Leontiev --- drivers/media/platform/s5p-g2d/g2d.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/media/platform/s5p-g2d/g2d.c b/drivers/media/platform/s5p-g2d/g2d.c index 66aa8cf1d048..3735c204e9ac

[PATCH 4/6] [media] mx2: Remove surplus name initialization

2018-06-12 Thread Anton Leontiev
Name is already initialized by assignment from emmaprp_videodev. Signed-off-by: Anton Leontiev --- drivers/media/platform/mx2_emmaprp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/media/platform/mx2_emmaprp.c b/drivers/media/platform/mx2_emmaprp.c index 5a8eff60e95f

[PATCH 5/6] [media] m2m-deinterlace: Remove surplus name initialization

2018-06-12 Thread Anton Leontiev
Name is already initialized by assignment from deinterlace_videodev. Signed-off-by: Anton Leontiev --- drivers/media/platform/m2m-deinterlace.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/media/platform/m2m-deinterlace.c b/drivers/media/platform/m2m-deinterlace.c index

[PATCH 1/6] [media] vim2m: Remove surplus name initialization

2018-06-12 Thread Anton Leontiev
Name is already initialized by assignment from vim2m_videodev. Signed-off-by: Anton Leontiev --- drivers/media/platform/vim2m.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/media/platform/vim2m.c b/drivers/media/platform/vim2m.c index 065483e62db4..1393aa806462 100644 --- a

Non-existing email in MAINTAINERS

2018-06-12 Thread Anton Leontiev
Jacob, You have wrong e-mail address in MAINTAINERS file. Letters to jacob2.c...@rock-chips.com return error: 550 jacob2.c...@rock-chips.com:user not exist Best regards, Anton Leontiev

[PATCH] [media] vb2: Fix queue_setup() callback description

2017-03-23 Thread Anton Leontiev
Correct meaning of the last sensence by swapping it with previous. Fix two small typos. Signed-off-by: Anton Leontiev --- include/media/videobuf2-core.h | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/media/videobuf2-core.h b/include/media/videobuf2

[PATCH] [media] uvcvideo: Fix marking buffer erroneous in case of FID toggling

2014-03-24 Thread Anton Leontiev
Set error bit for incomplete buffers when end of buffer is detected by FID toggling (for example when last transaction with EOF is lost). This prevents passing incomplete buffers to the userspace. Signed-off-by: Anton Leontiev --- drivers/media/usb/uvc/uvc_video.c | 21 +++-- 1

Re: [PATCH] [media] uvcvideo: Fix marking buffer erroneous in case of FID toggling

2014-03-27 Thread Anton Leontiev
26.03.2014 21:41, Laurent Pinchart wrote: > Hi Anton, > > Thank you for the patch. > > On Tuesday 25 March 2014 08:40:57 Anton Leontiev wrote: >> Set error bit for incomplete buffers when end of buffer is detected by >> FID toggling (for example when last transaction

Re: [PATCH] [media] uvcvideo: Fix marking buffer erroneous in case of FID toggling

2014-03-28 Thread Anton Leontiev
ond 'const' after pointer character '*'? I thought it marks pointer itself as constant for type-checking opposite to first 'const', which marks memory it points to as constant for type-checking. I understand that the function is simple enough to verify it by hand but it'