lg-vl600.c (24942c8e5cc8696064ee207ff29d4cf21f70dafc) | lg-vl600.c (d632eb1bf22e11def74e4e53cc47d790fbdba105) |
---|---|
1/* 2 * Ethernet interface part of the LG VL600 LTE modem (4G dongle) 3 * 4 * Copyright (C) 2011 Intel Corporation 5 * Author: Andrzej Zaborowski <balrogg@gmail.com> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by --- 335 unchanged lines hidden (view full) --- 344 .name = "lg-vl600", 345 .id_table = products, 346 .probe = usbnet_probe, 347 .disconnect = usbnet_disconnect, 348 .suspend = usbnet_suspend, 349 .resume = usbnet_resume, 350}; 351 | 1/* 2 * Ethernet interface part of the LG VL600 LTE modem (4G dongle) 3 * 4 * Copyright (C) 2011 Intel Corporation 5 * Author: Andrzej Zaborowski <balrogg@gmail.com> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by --- 335 unchanged lines hidden (view full) --- 344 .name = "lg-vl600", 345 .id_table = products, 346 .probe = usbnet_probe, 347 .disconnect = usbnet_disconnect, 348 .suspend = usbnet_suspend, 349 .resume = usbnet_resume, 350}; 351 |
352static int __init vl600_init(void) 353{ 354 return usb_register(&lg_vl600_driver); 355} 356module_init(vl600_init); | 352module_usb_driver(lg_vl600_driver); |
357 | 353 |
358static void __exit vl600_exit(void) 359{ 360 usb_deregister(&lg_vl600_driver); 361} 362module_exit(vl600_exit); 363 | |
364MODULE_AUTHOR("Anrzej Zaborowski"); 365MODULE_DESCRIPTION("LG-VL600 modem's ethernet link"); 366MODULE_LICENSE("GPL"); | 354MODULE_AUTHOR("Anrzej Zaborowski"); 355MODULE_DESCRIPTION("LG-VL600 modem's ethernet link"); 356MODULE_LICENSE("GPL"); |