diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-02-28 16:11:58 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-02-28 16:11:58 -0500 |
commit | d01bf4139d411369828b8d104fde418882226da5 (patch) | |
tree | 6befa253f0a1e9caa278082dbc4d4cadf8d72713 /drivers/usb/serial/iuu_phoenix.c | |
parent | f939484bb6473e51c1516ab9a4f3a7620cd95d72 (diff) |
USB: serial: iuu_phoenix.c: use module_usb_serial_driver
This converts the iuu_phoenix.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: Rusty Russell <rusty@rustcorp.com.au>
CC: Johan Hovold <jhovold@gmail.com>
CC: Alan Stern <stern@rowland.harvard.edu>
CC: Mauro Carvalho Chehab <mchehab@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/serial/iuu_phoenix.c')
-rw-r--r-- | drivers/usb/serial/iuu_phoenix.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/drivers/usb/serial/iuu_phoenix.c b/drivers/usb/serial/iuu_phoenix.c index 97a7ea2a5e4f..f2192d527db0 100644 --- a/drivers/usb/serial/iuu_phoenix.c +++ b/drivers/usb/serial/iuu_phoenix.c | |||
@@ -1294,24 +1294,7 @@ static struct usb_serial_driver * const serial_drivers[] = { | |||
1294 | &iuu_device, NULL | 1294 | &iuu_device, NULL |
1295 | }; | 1295 | }; |
1296 | 1296 | ||
1297 | static int __init iuu_init(void) | 1297 | module_usb_serial_driver(iuu_driver, serial_drivers); |
1298 | { | ||
1299 | int retval; | ||
1300 | |||
1301 | retval = usb_serial_register_drivers(&iuu_driver, serial_drivers); | ||
1302 | if (retval == 0) | ||
1303 | printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":" | ||
1304 | DRIVER_DESC "\n"); | ||
1305 | return retval; | ||
1306 | } | ||
1307 | |||
1308 | static void __exit iuu_exit(void) | ||
1309 | { | ||
1310 | usb_serial_deregister_drivers(&iuu_driver, serial_drivers); | ||
1311 | } | ||
1312 | |||
1313 | module_init(iuu_init); | ||
1314 | module_exit(iuu_exit); | ||
1315 | 1298 | ||
1316 | MODULE_AUTHOR("Alain Degreffe eczema@ecze.com"); | 1299 | MODULE_AUTHOR("Alain Degreffe eczema@ecze.com"); |
1317 | 1300 | ||