问题一:
编译linux内核(OK210),多个地方出现这个问题:
error: too few arguments to function 'mmc_suspend_host'
网上查了下mmc_suspend_host函数原型:
http://blog.chinaunix.net/xmlrpc.php?r=blog/article&uid=28685940&id=3889878

缺少第二个参数 pm_message_t  state  因此只需要根据调用函数补上即可。

一般就是state 。



问题二:

error: implicit declaration of function 'kzalloc'
error: implicit declaration of function 'kfree'


添加 #include <linux/slab.h>


问题三:

drivers/scsi/advansys.c:8376: error: implicit declaration of function 'dma_cache_sync'

打开文件找到dma_cache_sync ,直接注释就行了。

参考:http://bbs.chinaunix.net/thread-3645559-1-1.html


问题四:

drivers/scsi/ipr.c:654: error: implicit declaration of function 'writeq'

应该可能在linux/slab.h 在没有定义 也有人说这个bug 

https://bugzilla.kernel.org/show_bug.cgi?id=17822


暂时没解决这个问题,直接在配置里把scsi全关了。。

可能解决的办法是更新linux库?

Logo

更多推荐