当前位置: 技术问答>linux和unix
使用hello-objs该项编译hello驱动模块,竟然会提示失败..
来源: 互联网 发布时间:2016-09-07
本文导语: 编译一个简单的hello模块驱动,主要用测试编译项目的: #include #include #include /* printk() */ MODULE_LICENSE("Dual BSD/GPL"); static char *whom = "world"; static int howmany = 1; module_param(howmany, int, S_IRUGO); //声名模块...
编译一个简单的hello模块驱动,主要用测试编译项目的:
#include
#include
#include /* printk() */
MODULE_LICENSE("Dual BSD/GPL");
static char *whom = "world";
static int howmany = 1;
module_param(howmany, int, S_IRUGO); //声名模块参数
module_param(whom, charp, S_IRUGO);
static int hello_init(void) //初始化函数应当声明成静态的
{
int i = 0;
for(i = 0 ;i