diff options
| author | Greg Kroah-Hartman <[email protected]> | 2012-02-28 13:12:26 -0800 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2012-02-28 13:12:26 -0800 |
| commit | 3d8d7296f7dbc7c977b8552dcfa649817d91d24c (patch) | |
| tree | 73151770a9850efb09c05508d61a24ecce57325d | |
| parent | 5bce269d3a464b436d9b416105821aa5257fee36 (diff) | |
USB: serial: qcserial.c: use module_usb_serial_driver
This converts the qcserial.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: Steven Hardy <[email protected]>
CC: Thomas Tuttle <[email protected]>
CC: Paul Gortmaker <[email protected]>
CC: Rusty Russell <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/usb/serial/qcserial.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/usb/serial/qcserial.c b/drivers/usb/serial/qcserial.c index 4f3a5a794884..0206b10c9e6e 100644 --- a/drivers/usb/serial/qcserial.c +++ b/drivers/usb/serial/qcserial.c @@ -285,18 +285,7 @@ static struct usb_serial_driver * const serial_drivers[] = { &qcdevice, NULL }; -static int __init qcinit(void) -{ - return usb_serial_register_drivers(&qcdriver, serial_drivers); -} - -static void __exit qcexit(void) -{ - usb_serial_deregister_drivers(&qcdriver, serial_drivers); -} - -module_init(qcinit); -module_exit(qcexit); +module_usb_serial_driver(qcdriver, serial_drivers); MODULE_AUTHOR(DRIVER_AUTHOR); MODULE_DESCRIPTION(DRIVER_DESC); |