summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2014-02-18 12:00:45 -0300
committerMauro Carvalho Chehab <m.chehab@samsung.com>2014-02-28 14:37:59 -0300
commitce4452e65dad27295f7ceb553727b55e2abbdd90 (patch)
treedc7fd022f3536d09df99412daaf82bf47f87bead
parent61f0319193c44adbbada920162d880b1fdb3aeb3 (diff)
[media] gspca_stv06xx: remove an unneeded check
"err" is zero here so we don't need to check again. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
-rw-r--r--drivers/media/usb/gspca/stv06xx/stv06xx_vv6410.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/gspca/stv06xx/stv06xx_vv6410.c b/drivers/media/usb/gspca/stv06xx/stv06xx_vv6410.c
index bf3e5c317a26..e60cbb3aa609 100644
--- a/drivers/media/usb/gspca/stv06xx/stv06xx_vv6410.c
+++ b/drivers/media/usb/gspca/stv06xx/stv06xx_vv6410.c
@@ -178,7 +178,7 @@ static int vv6410_stop(struct sd *sd)
PDEBUG(D_STREAM, "Halting stream");
- return (err < 0) ? err : 0;
+ return 0;
}
static int vv6410_dump(struct sd *sd)