Skip to content

Commit

Permalink
[media] af9035: use module_usb_driver macro
Browse files Browse the repository at this point in the history
Let's save a few lines of code using the module_usb_driver macro.

Signed-off-by: Gianluca Gennari <gennarone@gmail.com>
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Gianluca Gennari authored and Mauro Carvalho Chehab committed Apr 9, 2012
1 parent ce1fe37 commit 48bf7e1
Showing 1 changed file with 1 addition and 25 deletions.
26 changes: 1 addition & 25 deletions drivers/media/dvb/dvb-usb/af9035.c
Original file line number Diff line number Diff line change
Expand Up @@ -973,31 +973,7 @@ static struct usb_driver af9035_usb_driver = {
.id_table = af9035_id,
};

/* module stuff */
static int __init af9035_usb_module_init(void)
{
int ret;

ret = usb_register(&af9035_usb_driver);
if (ret < 0)
goto err;

return 0;

err:
pr_debug("%s: failed=%d\n", __func__, ret);

return ret;
}

static void __exit af9035_usb_module_exit(void)
{
/* deregister this driver from the USB subsystem */
usb_deregister(&af9035_usb_driver);
}

module_init(af9035_usb_module_init);
module_exit(af9035_usb_module_exit);
module_usb_driver(af9035_usb_driver);

MODULE_AUTHOR("Antti Palosaari <crope@iki.fi>");
MODULE_DESCRIPTION("Afatech AF9035 driver");
Expand Down

0 comments on commit 48bf7e1

Please sign in to comment.