Skip to content

Commit

Permalink
USB: serial: mos7840.c: use module_usb_serial_driver
Browse files Browse the repository at this point in the history
This converts the mos7840.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.

CC: Johan Hovold <jhovold@gmail.com>
CC: Rusty Russell <rusty@rustcorp.com.au>
CC: Alan Stern <stern@rowland.harvard.edu>
CC: Mauro Carvalho Chehab <mchehab@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Greg Kroah-Hartman committed Feb 28, 2012
1 parent 964e2b8 commit e7414d9
Showing 1 changed file with 1 addition and 36 deletions.
37 changes: 1 addition & 36 deletions drivers/usb/serial/mos7840.c
Original file line number Diff line number Diff line change
Expand Up @@ -2676,43 +2676,8 @@ static struct usb_serial_driver * const serial_drivers[] = {
&moschip7840_4port_device, NULL
};

/****************************************************************************
* moschip7840_init
* This is called by the module subsystem, or on startup to initialize us
****************************************************************************/
static int __init moschip7840_init(void)
{
int retval;

dbg("%s", " mos7840_init :entering..........");

retval = usb_serial_register_drivers(&io_driver, serial_drivers);
if (retval == 0)
printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":"
DRIVER_DESC "\n");

dbg("%s", "Leaving...");
return retval;
}

/****************************************************************************
* moschip7840_exit
* Called when the driver is about to be unloaded.
****************************************************************************/
static void __exit moschip7840_exit(void)
{

dbg("%s", " mos7840_exit :entering..........");

usb_serial_deregister_drivers(&io_driver, serial_drivers);

dbg("%s", "Entering...");
}

module_init(moschip7840_init);
module_exit(moschip7840_exit);
module_usb_serial_driver(io_driver, serial_drivers);

/* Module information */
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE("GPL");

Expand Down

0 comments on commit e7414d9

Please sign in to comment.