rtl8150.c (24942c8e5cc8696064ee207ff29d4cf21f70dafc) | rtl8150.c (d632eb1bf22e11def74e4e53cc47d790fbdba105) |
---|---|
1/* 2 * Copyright (c) 2002 Petko Manolov (petkan@users.sourceforge.net) 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU General Public License 6 * version 2 as published by the Free Software Foundation. 7 */ 8 --- 964 unchanged lines hidden (view full) --- 973 .name = driver_name, 974 .probe = rtl8150_probe, 975 .disconnect = rtl8150_disconnect, 976 .id_table = rtl8150_table, 977 .suspend = rtl8150_suspend, 978 .resume = rtl8150_resume 979}; 980 | 1/* 2 * Copyright (c) 2002 Petko Manolov (petkan@users.sourceforge.net) 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU General Public License 6 * version 2 as published by the Free Software Foundation. 7 */ 8 --- 964 unchanged lines hidden (view full) --- 973 .name = driver_name, 974 .probe = rtl8150_probe, 975 .disconnect = rtl8150_disconnect, 976 .id_table = rtl8150_table, 977 .suspend = rtl8150_suspend, 978 .resume = rtl8150_resume 979}; 980 |
981static int __init usb_rtl8150_init(void) 982{ 983 printk(KERN_INFO KBUILD_MODNAME ": " DRIVER_VERSION ":" 984 DRIVER_DESC "\n"); 985 return usb_register(&rtl8150_driver); 986} | 981module_usb_driver(rtl8150_driver); |
987 | 982 |
988static void __exit usb_rtl8150_exit(void) 989{ 990 usb_deregister(&rtl8150_driver); 991} 992 993module_init(usb_rtl8150_init); 994module_exit(usb_rtl8150_exit); 995 | |
996MODULE_AUTHOR(DRIVER_AUTHOR); 997MODULE_DESCRIPTION(DRIVER_DESC); 998MODULE_LICENSE("GPL"); | 983MODULE_AUTHOR(DRIVER_AUTHOR); 984MODULE_DESCRIPTION(DRIVER_DESC); 985MODULE_LICENSE("GPL"); |