media: zoran: convert comma to semicolon
authorZheng Yongjun <zhengyongjun3@huawei.com>
Fri, 8 Jan 2021 09:21:19 +0000 (10:21 +0100)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 14 Jan 2021 12:59:22 +0000 (13:59 +0100)
Replace a comma between expression statements by a semicolon.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Acked-by: Corentin Labbe <clabbe@baylibre.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/staging/media/zoran/zoran_driver.c

index d9f8b21..e8902f8 100644 (file)
@@ -1020,7 +1020,7 @@ int zoran_queue_init(struct zoran *zr, struct vb2_queue *vq)
        vq->buf_struct_size = sizeof(struct zr_buffer);
        vq->ops = &zr_video_qops;
        vq->mem_ops = &vb2_dma_contig_memops;
-       vq->gfp_flags = GFP_DMA32,
+       vq->gfp_flags = GFP_DMA32;
        vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
        vq->min_buffers_needed = 9;
        vq->lock = &zr->lock;