[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>
This commit is contained in:
Dan Carpenter 2014-02-18 12:00:45 -03:00 committed by Mauro Carvalho Chehab
parent 61f0319193
commit ce4452e65d
1 changed files with 1 additions and 1 deletions

View File

@ -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)