1 /* ----------------------------------------------------------------------------- 2 * Copyright (c) 2011 Ozmo Inc 3 * Released under the GNU General Public License Version 2 (GPLv2). 4 * ----------------------------------------------------------------------------- 5 */ 6 #include <linux/init.h> 7 #include <linux/module.h> 8 #include <linux/timer.h> 9 #include <linux/sched.h> 10 #include <linux/netdevice.h> 11 #include <linux/errno.h> 12 #include <linux/ieee80211.h> 13 #include "ozconfig.h" 14 #include "ozpd.h" 15 #include "ozproto.h" 16 #include "ozcdev.h" 17 #include "oztrace.h" 18 #include "ozevent.h" 19 /*------------------------------------------------------------------------------ 20 * The name of the 802.11 mac device. Empty string is the default value but a 21 * value can be supplied as a parameter to the module. An empty string means 22 * bind to nothing. '*' means bind to all netcards - this includes non-802.11 23 * netcards. Bindings can be added later using an IOCTL. 24 */ 25 char *g_net_dev = ""; 26 /*------------------------------------------------------------------------------ 27 * Context: process 28 */ ozwpan_init(void)29static int __init ozwpan_init(void) 30 { 31 oz_event_init(); 32 oz_cdev_register(); 33 oz_protocol_init(g_net_dev); 34 oz_app_enable(OZ_APPID_USB, 1); 35 oz_apps_init(); 36 return 0; 37 } 38 /*------------------------------------------------------------------------------ 39 * Context: process 40 */ ozwpan_exit(void)41static void __exit ozwpan_exit(void) 42 { 43 oz_protocol_term(); 44 oz_apps_term(); 45 oz_cdev_deregister(); 46 oz_event_term(); 47 } 48 /*------------------------------------------------------------------------------ 49 */ 50 module_param(g_net_dev, charp, S_IRUGO); 51 module_init(ozwpan_init); 52 module_exit(ozwpan_exit); 53 54 MODULE_AUTHOR("Chris Kelly"); 55 MODULE_DESCRIPTION("Ozmo Devices USB over WiFi hcd driver"); 56 MODULE_VERSION("1.0.8"); 57 MODULE_LICENSE("GPL"); 58 59