blob: ef6c5ab753ee4dc9049ccd5d399f8c22c2d86c7d [file] [log] [blame]
Chris Kelly62450bc2012-02-20 21:11:17 +00001/* -----------------------------------------------------------------------------
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"
Chris Kelly62450bc2012-02-20 21:11:17 +000017#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 */
25char *g_net_dev = "";
26/*------------------------------------------------------------------------------
27 * Context: process
28 */
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();
Rupesh Gujare68a75f32012-03-29 13:11:50 +010036#ifdef CONFIG_DEBUG_FS
37 oz_debugfs_init();
38#endif
Chris Kelly62450bc2012-02-20 21:11:17 +000039 return 0;
40}
41/*------------------------------------------------------------------------------
42 * Context: process
43 */
44static void __exit ozwpan_exit(void)
45{
46 oz_protocol_term();
47 oz_apps_term();
48 oz_cdev_deregister();
Chris Kelly62450bc2012-02-20 21:11:17 +000049 oz_event_term();
Rupesh Gujare68a75f32012-03-29 13:11:50 +010050#ifdef CONFIG_DEBUG_FS
51 oz_debugfs_remove();
52#endif
Chris Kelly62450bc2012-02-20 21:11:17 +000053}
54/*------------------------------------------------------------------------------
55 */
56module_param(g_net_dev, charp, S_IRUGO);
57module_init(ozwpan_init);
58module_exit(ozwpan_exit);
59
60MODULE_AUTHOR("Chris Kelly");
61MODULE_DESCRIPTION("Ozmo Devices USB over WiFi hcd driver");
Rupesh Gujare3c1669d2012-07-23 18:49:47 +010062MODULE_VERSION("1.0.13");
Chris Kelly62450bc2012-02-20 21:11:17 +000063MODULE_LICENSE("GPL");
64