linux内核编译__devinit错误解决办法

来源:互联网 发布:linux中压缩命令 编辑:程序博客网 时间:2024/06/16 11:59

转自:http://my.oschina.net/zhuanghaoren/blog/314846

我是在调试触摸屏的时候出现错误:__devinit error expected ‘=’ ‘ ’ ‘ ’ ‘asm’ or ‘__attribute__’ before

然后查到

linux kernel3.8以后,把: __devinit, __devinitdata, __devinitconst, __devexit, __devexitdata, __devexitconst 这些都去掉了。

出现的错误:

__devinit error expected ‘=’ ‘ ’ ‘ ’ ‘asm’ or ‘__attribute__’ before

解决办法:

#define __devexit
#define __devinitdata
#define __devinit 
#define __devexit_p

具体可以参考:

a whole set of __dev... macros are no longer used or defined Here is the list: __devinit, __devinitdata, __devinitconst, __devexit, __devexitdata, __devexitconst background: These attributes were used on certain driver functions and data declarations, putting them in a separate section that could be discarded under certain circumstances. This functionality is no longer relevant, and the macros were removed in version 3.8 of the kernel. The macros should no longer be used. Just remove the attributes any place they are used. see this commit: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=54b956b903607


0 0