diff options
Diffstat (limited to 'drivers/usb/serial/symbolserial.c')
-rw-r--r-- | drivers/usb/serial/symbolserial.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/usb/serial/symbolserial.c b/drivers/usb/serial/symbolserial.c index 5ef07ca6fe92..f7c440541754 100644 --- a/drivers/usb/serial/symbolserial.c +++ b/drivers/usb/serial/symbolserial.c | |||
@@ -269,11 +269,6 @@ static void symbol_release(struct usb_serial *serial) | |||
269 | kfree(priv); | 269 | kfree(priv); |
270 | } | 270 | } |
271 | 271 | ||
272 | static struct usb_driver symbol_driver = { | ||
273 | .name = "symbol", | ||
274 | .id_table = id_table, | ||
275 | }; | ||
276 | |||
277 | static struct usb_serial_driver symbol_device = { | 272 | static struct usb_serial_driver symbol_device = { |
278 | .driver = { | 273 | .driver = { |
279 | .owner = THIS_MODULE, | 274 | .owner = THIS_MODULE, |
@@ -294,7 +289,7 @@ static struct usb_serial_driver * const serial_drivers[] = { | |||
294 | &symbol_device, NULL | 289 | &symbol_device, NULL |
295 | }; | 290 | }; |
296 | 291 | ||
297 | module_usb_serial_driver(symbol_driver, serial_drivers); | 292 | module_usb_serial_driver(serial_drivers, id_table); |
298 | 293 | ||
299 | MODULE_LICENSE("GPL"); | 294 | MODULE_LICENSE("GPL"); |
300 | 295 | ||