Skip to content

Commit

Permalink
Staging: line6: use module_usb_driver()
Browse files Browse the repository at this point in the history
Now that our module_init/exit path is just registering and unregistering
the usb driver, we can use module_usb_driver() instead.  This also has
the nice side affect of removing the unneeded printk for the module
version number.

CC: Markus Grabner <grabner@icg.tugraz.at>
CC: Stefan Hajnoczi <stefanha@gmail.com>
CC: Julia Lawall <julia@diku.dk>
CC: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Greg Kroah-Hartman committed Apr 23, 2012
1 parent 15a89dc commit 4a63136
Showing 1 changed file with 1 addition and 20 deletions.
21 changes: 1 addition & 20 deletions drivers/staging/line6/driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -1300,26 +1300,7 @@ static struct usb_driver line6_driver = {
.id_table = line6_id_table,
};

/*
Module initialization.
*/
static int __init line6_init(void)
{
printk(KERN_INFO "%s driver version %s\n", DRIVER_NAME, DRIVER_VERSION);

return usb_register(&line6_driver);
}

/*
Module cleanup.
*/
static void __exit line6_exit(void)
{
usb_deregister(&line6_driver);
}

module_init(line6_init);
module_exit(line6_exit);
module_usb_driver(line6_driver);

MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
Expand Down

0 comments on commit 4a63136

Please sign in to comment.