Skip to content

Commit

Permalink
USB: serial: keyspan_pda.c: use module_usb_serial_driver
Browse files Browse the repository at this point in the history
This converts the keyspan_pda.c driver to use the module_usb_serial_driver() call
instead of having to have a module_init/module_exit function, saving a lot
of duplicated code.

Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Greg Kroah-Hartman committed Feb 28, 2012
1 parent 165c793 commit d40f5b0
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions drivers/usb/serial/keyspan_pda.c
Original file line number Diff line number Diff line change
Expand Up @@ -834,26 +834,11 @@ static struct usb_serial_driver * const serial_drivers[] = {
NULL
};

static int __init keyspan_pda_init(void)
{
return usb_serial_register_drivers(&keyspan_pda_driver,
serial_drivers);
}

static void __exit keyspan_pda_exit(void)
{
usb_serial_deregister_drivers(&keyspan_pda_driver,
serial_drivers);
}


module_init(keyspan_pda_init);
module_exit(keyspan_pda_exit);
module_usb_serial_driver(keyspan_pda_driver, serial_drivers);

MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL");

module_param(debug, bool, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(debug, "Debug enabled or not");

0 comments on commit d40f5b0

Please sign in to comment.