aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/usb/cx231xx
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2020-04-24 13:25:54 +0200
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>2020-07-04 12:01:44 +0200
commit414953b4833f2b2024ec46213a75586465acea90 (patch)
tree85e50de964aaae87446f0b9dbdfb5ee54abf8099 /drivers/media/usb/cx231xx
parentmedia: mtk-mdp: Remove mtk_mdp_comp.id and supporting functionality (diff)
downloadlinux-dev-414953b4833f2b2024ec46213a75586465acea90.tar.xz
linux-dev-414953b4833f2b2024ec46213a75586465acea90.zip
media: cx231xx: remove redundant assignment to variable err
The variable err is being initialized with a value that is never read and it is being updated later with a new value. The initialization is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media/usb/cx231xx')
-rw-r--r--drivers/media/usb/cx231xx/cx231xx-417.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/cx231xx/cx231xx-417.c b/drivers/media/usb/cx231xx/cx231xx-417.c
index b0cd51134654..c5e21785fafe 100644
--- a/drivers/media/usb/cx231xx/cx231xx-417.c
+++ b/drivers/media/usb/cx231xx/cx231xx-417.c
@@ -1734,7 +1734,7 @@ static void cx231xx_video_dev_init(
int cx231xx_417_register(struct cx231xx *dev)
{
/* FIXME: Port1 hardcoded here */
- int err = -ENODEV;
+ int err;
struct cx231xx_tsport *tsport = &dev->ts1;
struct vb2_queue *q;