int51x1.c (24942c8e5cc8696064ee207ff29d4cf21f70dafc) | int51x1.c (d632eb1bf22e11def74e4e53cc47d790fbdba105) |
---|---|
1/* 2 * Copyright (c) 2009 Peter Holik 3 * 4 * Intellon usb PLC (Powerline Communications) usb net driver 5 * 6 * http://www.tandel.be/downloads/INT51X1_Datasheet.pdf 7 * 8 * Based on the work of Jan 'RedBully' Seiffert --- 224 unchanged lines hidden (view full) --- 233 .name = "int51x1", 234 .id_table = products, 235 .probe = usbnet_probe, 236 .disconnect = usbnet_disconnect, 237 .suspend = usbnet_suspend, 238 .resume = usbnet_resume, 239}; 240 | 1/* 2 * Copyright (c) 2009 Peter Holik 3 * 4 * Intellon usb PLC (Powerline Communications) usb net driver 5 * 6 * http://www.tandel.be/downloads/INT51X1_Datasheet.pdf 7 * 8 * Based on the work of Jan 'RedBully' Seiffert --- 224 unchanged lines hidden (view full) --- 233 .name = "int51x1", 234 .id_table = products, 235 .probe = usbnet_probe, 236 .disconnect = usbnet_disconnect, 237 .suspend = usbnet_suspend, 238 .resume = usbnet_resume, 239}; 240 |
241static int __init int51x1_init(void) 242{ 243 return usb_register(&int51x1_driver); 244} 245module_init(int51x1_init); | 241module_usb_driver(int51x1_driver); |
246 | 242 |
247static void __exit int51x1_exit(void) 248{ 249 usb_deregister(&int51x1_driver); 250} 251module_exit(int51x1_exit); 252 | |
253MODULE_AUTHOR("Peter Holik"); 254MODULE_DESCRIPTION("Intellon usb powerline adapter"); 255MODULE_LICENSE("GPL"); | 243MODULE_AUTHOR("Peter Holik"); 244MODULE_DESCRIPTION("Intellon usb powerline adapter"); 245MODULE_LICENSE("GPL"); |