[media] gspca: Use module_usb_driver macro
module_usb_driver eliminates a lot of boilerplate by replacing module_init() and module_exit() calls. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
c307538888
commit
e52ec68015
|
@ -536,20 +536,4 @@ static struct usb_driver sd_driver = {
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
/* -- module insert / remove -- */
|
module_usb_driver(sd_driver);
|
||||||
static int __init sd_mod_init(void)
|
|
||||||
{
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
ret = usb_register(&sd_driver);
|
|
||||||
if (ret < 0)
|
|
||||||
return ret;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
static void __exit sd_mod_exit(void)
|
|
||||||
{
|
|
||||||
usb_deregister(&sd_driver);
|
|
||||||
}
|
|
||||||
|
|
||||||
module_init(sd_mod_init);
|
|
||||||
module_exit(sd_mod_exit);
|
|
||||||
|
|
Loading…
Reference in New Issue