diff options
author | Jean-François Moine <moinejf@free.fr> | 2010-09-13 03:53:03 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-10-20 23:05:52 -0400 |
commit | 548264375b1c0d51b418bf7ab6d2fec647307ab7 (patch) | |
tree | 7c3ba4523a1a17118929f38b04be295ed0f9d377 /drivers/media/video/gspca/stv06xx | |
parent | ed19a5db7826a150f0746123b23ac5cb0b2621f8 (diff) |
V4L/DVB: gspca - all modules: Remove useless module load/unload messages
Signed-off-by: Jean-François 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.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/media/video/gspca/stv06xx/stv06xx.c b/drivers/media/video/gspca/stv06xx/stv06xx.c index 14f179a19485..ffb49228c8bd 100644 --- a/drivers/media/video/gspca/stv06xx/stv06xx.c +++ b/drivers/media/video/gspca/stv06xx/stv06xx.c | |||
@@ -562,17 +562,11 @@ static struct usb_driver sd_driver = { | |||
562 | /* -- module insert / remove -- */ | 562 | /* -- module insert / remove -- */ |
563 | static int __init sd_mod_init(void) | 563 | static int __init sd_mod_init(void) |
564 | { | 564 | { |
565 | int ret; | 565 | return usb_register(&sd_driver); |
566 | ret = usb_register(&sd_driver); | ||
567 | if (ret < 0) | ||
568 | return ret; | ||
569 | PDEBUG(D_PROBE, "registered"); | ||
570 | return 0; | ||
571 | } | 566 | } |
572 | static void __exit sd_mod_exit(void) | 567 | static void __exit sd_mod_exit(void) |
573 | { | 568 | { |
574 | usb_deregister(&sd_driver); | 569 | usb_deregister(&sd_driver); |
575 | PDEBUG(D_PROBE, "deregistered"); | ||
576 | } | 570 | } |
577 | 571 | ||
578 | module_init(sd_mod_init); | 572 | module_init(sd_mod_init); |