diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-02-28 16:12:41 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-02-28 16:12:41 -0500 |
commit | 491c77a96689821bbe6acbef7dd1544bec35f794 (patch) | |
tree | cf3f56118689016903f2b1e6147c9110343bc8c1 /drivers/usb/serial/usb_debug.c | |
parent | ba76df3f65ce08413563119c9c77852b0835fbef (diff) |
USB: serial: usb_debug.c: use module_usb_serial_driver
This converts the usb_debug.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: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/serial/usb_debug.c')
-rw-r--r-- | drivers/usb/serial/usb_debug.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/usb/serial/usb_debug.c b/drivers/usb/serial/usb_debug.c index 5b29b4a2ebc7..e3e8995a4739 100644 --- a/drivers/usb/serial/usb_debug.c +++ b/drivers/usb/serial/usb_debug.c | |||
@@ -83,16 +83,5 @@ static struct usb_serial_driver * const serial_drivers[] = { | |||
83 | &debug_device, NULL | 83 | &debug_device, NULL |
84 | }; | 84 | }; |
85 | 85 | ||
86 | static int __init debug_init(void) | 86 | module_usb_serial_driver(debug_driver, serial_drivers); |
87 | { | ||
88 | return usb_serial_register_drivers(&debug_driver, serial_drivers); | ||
89 | } | ||
90 | |||
91 | static void __exit debug_exit(void) | ||
92 | { | ||
93 | usb_serial_deregister_drivers(&debug_driver, serial_drivers); | ||
94 | } | ||
95 | |||
96 | module_init(debug_init); | ||
97 | module_exit(debug_exit); | ||
98 | MODULE_LICENSE("GPL"); | 87 | MODULE_LICENSE("GPL"); |