static int __init ozwpan_init(void)
{
	oz_event_init();
	oz_cdev_register();
	oz_protocol_init(g_net_dev);
	oz_app_enable(OZ_APPID_USB, 1);
	oz_apps_init();
	return 0;
}
Esempio n. 2
0
/*------------------------------------------------------------------------------
 * Context: process
 */
static int __init ozwpan_init(void)
{
    oz_event_init();
    oz_cdev_register();
    oz_protocol_init(g_net_dev);
    oz_app_enable(OZ_APPID_USB, 1);
    oz_apps_init();
#ifdef CONFIG_DEBUG_FS
    oz_debugfs_init();
#endif
    return 0;
}