This commit is contained in:
柯飞雄
2010-06-01 09:14:39 +00:00
committed by 黄涛
parent 410b539951
commit 01a9115977
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
obj-m := wlan.o

View File

@@ -0,0 +1,17 @@
#include <linux/kernel.h>
#include <linux/module.h>
extern void if_sdio_init_module2(void);
static int wlan_init_module(void)
{
printk("Loading wlan driver..........\n");
if_sdio_init_module2();
return 0;
}
module_init(wlan_init_module);
//module_exit(wlan_exit_module);