summaryrefslogtreecommitdiff
path: root/drivers/media/video/gspca/stv06xx
diff options
context:
space:
mode:
authorAlexey Klimov <klimov.linux@gmail.com>2009-01-01 19:04:58 +0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-03-30 19:42:29 +0400
commite6b148490f5e9ebb90ecb4a8de930be1b8936a16 (patch)
treeb1b60102c8be93bcb150dfa22bb7ed1c73613c75 /drivers/media/video/gspca/stv06xx
parentf69e9529ed96ff917096d0b7b3015c8d8ea5750d (diff)
downloadlinux-e6b148490f5e9ebb90ecb4a8de930be1b8936a16.tar.xz
V4L/DVB (10336): gspca - all subdrivers: Return ret instead of -1 in sd_mod_init.
Signed-off-by: Alexey Klimov <klimov.linux@gmail.com> Signed-off-by: Jean-Francois Moine <moinejf@free.fr> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/gspca/stv06xx')
-rw-r--r--drivers/media/video/gspca/stv06xx/stv06xx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/gspca/stv06xx/stv06xx.c b/drivers/media/video/gspca/stv06xx/stv06xx.c
index c43534db74bb..9dff2e65b116 100644
--- a/drivers/media/video/gspca/stv06xx/stv06xx.c
+++ b/drivers/media/video/gspca/stv06xx/stv06xx.c
@@ -503,7 +503,7 @@ static int __init sd_mod_init(void)
int ret;
ret = usb_register(&sd_driver);
if (ret < 0)
- return -1;
+ return ret;
PDEBUG(D_PROBE, "registered");
return 0;
}