dm9601.c (24942c8e5cc8696064ee207ff29d4cf21f70dafc) dm9601.c (d632eb1bf22e11def74e4e53cc47d790fbdba105)
1/*
2 * Davicom DM9601 USB 1.1 10/100Mbps ethernet devices
3 *
4 * Peter Korsgaard <jacmet@sunsite.dk>
5 *
6 * This file is licensed under the terms of the GNU General Public License
7 * version 2. This program is licensed "as is" without any warranty of any
8 * kind, whether express or implied.

--- 658 unchanged lines hidden (view full) ---

667 .name = "dm9601",
668 .id_table = products,
669 .probe = usbnet_probe,
670 .disconnect = usbnet_disconnect,
671 .suspend = usbnet_suspend,
672 .resume = usbnet_resume,
673};
674
1/*
2 * Davicom DM9601 USB 1.1 10/100Mbps ethernet devices
3 *
4 * Peter Korsgaard <jacmet@sunsite.dk>
5 *
6 * This file is licensed under the terms of the GNU General Public License
7 * version 2. This program is licensed "as is" without any warranty of any
8 * kind, whether express or implied.

--- 658 unchanged lines hidden (view full) ---

667 .name = "dm9601",
668 .id_table = products,
669 .probe = usbnet_probe,
670 .disconnect = usbnet_disconnect,
671 .suspend = usbnet_suspend,
672 .resume = usbnet_resume,
673};
674
675static int __init dm9601_init(void)
676{
677 return usb_register(&dm9601_driver);
678}
675module_usb_driver(dm9601_driver);
679
676
680static void __exit dm9601_exit(void)
681{
682 usb_deregister(&dm9601_driver);
683}
684
685module_init(dm9601_init);
686module_exit(dm9601_exit);
687
688MODULE_AUTHOR("Peter Korsgaard <jacmet@sunsite.dk>");
689MODULE_DESCRIPTION("Davicom DM9601 USB 1.1 ethernet devices");
690MODULE_LICENSE("GPL");
677MODULE_AUTHOR("Peter Korsgaard <jacmet@sunsite.dk>");
678MODULE_DESCRIPTION("Davicom DM9601 USB 1.1 ethernet devices");
679MODULE_LICENSE("GPL");