diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-02-28 16:11:27 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-02-28 16:11:27 -0500 |
commit | f136e8b61c205fa6dccdc45fbda372f3acb2b5ab (patch) | |
tree | 25d0df4851d645586f01ca022f910cc4247826f8 /drivers/staging | |
parent | d1cddb4a8e9b09c33158acae05c48069d74fa4d0 (diff) |
USB: serial: quatech_usb2.c: use module_usb_serial_driver
This converts the quatech_usb2.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: Lucas De Marchi <lucas.demarchi@profusion.mobi>
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>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/quatech_usb2/quatech_usb2.c | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/drivers/staging/quatech_usb2/quatech_usb2.c b/drivers/staging/quatech_usb2/quatech_usb2.c index b8a078abd6c7..bb977e00cc86 100644 --- a/drivers/staging/quatech_usb2/quatech_usb2.c +++ b/drivers/staging/quatech_usb2/quatech_usb2.c | |||
@@ -1966,27 +1966,7 @@ static struct usb_serial_driver * const serial_drivers[] = { | |||
1966 | &quatech2_device, NULL | 1966 | &quatech2_device, NULL |
1967 | }; | 1967 | }; |
1968 | 1968 | ||
1969 | static int __init quausb2_usb_init(void) | 1969 | module_usb_serial_driver(quausb2_usb_driver, serial_drivers); |
1970 | { | ||
1971 | int retval; | ||
1972 | |||
1973 | dbg("%s\n", __func__); | ||
1974 | |||
1975 | retval = usb_serial_register_drivers(&quausb2_usb_driver, | ||
1976 | serial_drivers); | ||
1977 | if (retval == 0) | ||
1978 | printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":" | ||
1979 | DRIVER_DESC "\n"); | ||
1980 | return retval; | ||
1981 | } | ||
1982 | |||
1983 | static void __exit quausb2_usb_exit(void) | ||
1984 | { | ||
1985 | usb_serial_deregister_drivers(&quausb2_usb_driver, serial_drivers); | ||
1986 | } | ||
1987 | |||
1988 | module_init(quausb2_usb_init); | ||
1989 | module_exit(quausb2_usb_exit); | ||
1990 | 1970 | ||
1991 | MODULE_AUTHOR(DRIVER_AUTHOR); | 1971 | MODULE_AUTHOR(DRIVER_AUTHOR); |
1992 | MODULE_DESCRIPTION(DRIVER_DESC); | 1972 | MODULE_DESCRIPTION(DRIVER_DESC); |