mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 03:10:30 -04:00
media: mtk-jpeg: remove redundant initialization of variable plane_fmt
The variable plane_fmt is being initialized with a value that is never read, it is being re-assigned a new value on each iteration of a for loop. The initialization is redundant and can be removed. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
This commit is contained in:
committed by
Hans Verkuil
parent
3a7c5c2143
commit
ffd3f6385a
@@ -680,7 +680,7 @@ static int mtk_jpeg_buf_prepare(struct vb2_buffer *vb)
|
||||
{
|
||||
struct mtk_jpeg_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue);
|
||||
struct mtk_jpeg_q_data *q_data = NULL;
|
||||
struct v4l2_plane_pix_format plane_fmt = {};
|
||||
struct v4l2_plane_pix_format plane_fmt;
|
||||
int i;
|
||||
|
||||
q_data = mtk_jpeg_get_q_data(ctx, vb->vb2_queue->type);
|
||||
|
||||
Reference in New Issue
Block a user