From: Colin Ian King Date: Sun, 30 Jan 2022 23:21:40 +0000 (+0000) Subject: media: saa7164: remove redundant assignment to variable idx X-Git-Tag: v6.6.17~7948^2~86^2~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e6f1fc41343dc6635afe3938a66aca3444b92f6e;p=platform%2Fkernel%2Flinux-rpi.git media: saa7164: remove redundant assignment to variable idx Variable idx is being assigned a value that is never read, it is being re-assigned a new value in the following for-loop. The assignment is redundant and can be removed. Signed-off-by: Colin Ian King Signed-off-by: Hans Verkuil --- diff --git a/drivers/media/pci/saa7164/saa7164-cmd.c b/drivers/media/pci/saa7164/saa7164-cmd.c index a65d810..42bd8e7 100644 --- a/drivers/media/pci/saa7164/saa7164-cmd.c +++ b/drivers/media/pci/saa7164/saa7164-cmd.c @@ -187,7 +187,6 @@ static int saa7164_cmd_set(struct saa7164_dev *dev, struct tmComResInfo *msg, mutex_lock(&dev->cmds[msg->id].lock); size = msg->size; - idx = 0; cmds = size / bus->m_wMaxReqSize; if (size % bus->m_wMaxReqSize == 0) cmds -= 1;