|
发表于 2013-10-21 11:53:08
|
显示全部楼层
本帖最后由 soloforce 于 2013-10-21 12:08 编辑
tll 发表于 2013-10-20 13:49
我modprobe了,提示[dhd_module_init] get wl_host_wake gpio failed,为啥!!
我这里也是这个错误。用的是sunxi-linux-3.4-ct-v101的分支编译自己编译的内核
root@CubieTruck:~# modprobe bcmdhd
<4>[dhd_module_init] get wl_host_wake gpio failed
[ 345.042938] [dhd_module_init] get wl_host_wake gpio failed
ERROR: could not insert 'bcmdhd': Operation not permitted
看了一些代码,
if (gpio_request(WL_HOST_WAKE_DEF_GPIO, "wl_host_wake")) {
pr_warning("[%s] get wl_host_wake gpio failed\n", __FUNCTION__);
wl_host_wake = -1;
return -1;
}
原来是 gpio_request还没实现
static inline int gpio_request(unsigned gpio, const char *label)
{
return -ENOSYS;
}
而且官方发布的 lubuntu 2013-10-15 内核源码里面也是这样的。。。
|
|