aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/serial/qcaux.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/serial/qcaux.c')
-rw-r--r--drivers/usb/serial/qcaux.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/usb/serial/qcaux.c b/drivers/usb/serial/qcaux.c
index 966245680f55..a4edc7ee9c8a 100644
--- a/drivers/usb/serial/qcaux.c
+++ b/drivers/usb/serial/qcaux.c
@@ -77,13 +77,6 @@ static struct usb_device_id id_table[] = {
77}; 77};
78MODULE_DEVICE_TABLE(usb, id_table); 78MODULE_DEVICE_TABLE(usb, id_table);
79 79
80static struct usb_driver qcaux_driver = {
81 .name = "qcaux",
82 .probe = usb_serial_probe,
83 .disconnect = usb_serial_disconnect,
84 .id_table = id_table,
85};
86
87static struct usb_serial_driver qcaux_device = { 80static struct usb_serial_driver qcaux_device = {
88 .driver = { 81 .driver = {
89 .owner = THIS_MODULE, 82 .owner = THIS_MODULE,
@@ -97,5 +90,5 @@ static struct usb_serial_driver * const serial_drivers[] = {
97 &qcaux_device, NULL 90 &qcaux_device, NULL
98}; 91};
99 92
100module_usb_serial_driver(qcaux_driver, serial_drivers); 93module_usb_serial_driver(serial_drivers, id_table);
101MODULE_LICENSE("GPL"); 94MODULE_LICENSE("GPL");