diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-02-28 16:11:49 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-02-28 16:11:49 -0500 |
commit | 68e9c9a7fdbddab3407596b3e7f1a4972d045444 (patch) | |
tree | 1ee2e095106da820e926fae432254e4f062e4fec /drivers/usb/serial/hp4x.c | |
parent | db62c08128acdb6f37038f3711621b52963fe5eb (diff) |
USB: serial: hp4x.c: use module_usb_serial_driver
This converts the hp4x.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: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/serial/hp4x.c')
-rw-r--r-- | drivers/usb/serial/hp4x.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/drivers/usb/serial/hp4x.c b/drivers/usb/serial/hp4x.c index 325cf092b61c..2563e788c9b3 100644 --- a/drivers/usb/serial/hp4x.c +++ b/drivers/usb/serial/hp4x.c | |||
@@ -56,24 +56,7 @@ static struct usb_serial_driver * const serial_drivers[] = { | |||
56 | &hp49gp_device, NULL | 56 | &hp49gp_device, NULL |
57 | }; | 57 | }; |
58 | 58 | ||
59 | static int __init hp49gp_init(void) | 59 | module_usb_serial_driver(hp49gp_driver, serial_drivers); |
60 | { | ||
61 | int retval; | ||
62 | |||
63 | retval = usb_serial_register_drivers(&hp49gp_driver, serial_drivers); | ||
64 | if (retval == 0) | ||
65 | printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":" | ||
66 | DRIVER_DESC "\n"); | ||
67 | return retval; | ||
68 | } | ||
69 | |||
70 | static void __exit hp49gp_exit(void) | ||
71 | { | ||
72 | usb_serial_deregister_drivers(&hp49gp_driver, serial_drivers); | ||
73 | } | ||
74 | |||
75 | module_init(hp49gp_init); | ||
76 | module_exit(hp49gp_exit); | ||
77 | 60 | ||
78 | MODULE_DESCRIPTION(DRIVER_DESC); | 61 | MODULE_DESCRIPTION(DRIVER_DESC); |
79 | MODULE_VERSION(DRIVER_VERSION); | 62 | MODULE_VERSION(DRIVER_VERSION); |