QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 2334|回复: 3

求助:第一次写驱动

[复制链接]
发表于 2008-4-19 18:40:43 | 显示全部楼层 |阅读模式
第一次学写驱动,试着按照 linuxdevicedriver3 里说的写的一个驱动

#include<linux/module.h>
#include<linux/kernel.h>
#include<linux/version.h>
#include<linux/types.h>
#include<linux/fs.h>
#include<linux/mm.h>
#include<linux/error.h>
#include<linux/config.h>
#include<asm/segment.h>
unsigned int test_major = 0;
static int read_test(struct inode *inode,struct file *file,char *buf,int count){
int left;
if (verify_area(VERIFY_WRITE,buf,count) == -EFAULT)
return -EFAULT;
for (left = count; left > 0 ; left--){
__put_user(1,buf,1);
buf++;
}
return count;
}

static int write_test(struct inode *inode,struct file *file,const char *buf, int count){
return count;
}

static void release_test(struct inode *inode,struct file *file,){
MOD_DEC_USE_COUNT;
}

struct file_operations test_fops = {
NULL,
read_test,
write_test,
NULL,
NULL,
NULL,
NULL,
open_test,
release_test,
NULL,
};

int init_module(void){
int result;
result = regster_chrdev(0,"test",&test_fops);
if(result < 0){
printk(KERN_INFO "test:can't get major number!\n");
return result;
}
if(test_major == 0)test_major = result;
return 0;
}

void cleanup_module(void){
unregister_chrdev(test_major,"test");
}

一般设备驱动写这样一个.c文件就可以了吗?(本人实在不太懂,都没有说这样些一个完整驱动的例子),????
然后就执行:
gcc -O2 -DMODULE -D__KENEL__ -c test.c

出错:
linux/module.h:No such file or director
linux/mm.h:No such file or directory
linux/error.h:No such file or directory
linux/config.h:No such file or directory
asm/segment.h:No such file or directory

为什么会这样?是gcc找不到lib文件?我有装 linux-headers-
发表于 2008-5-4 23:15:49 | 显示全部楼层

编译问题。

linuxdevicedriver3 上面好像有个Makefile的例子,用那个编译驱动。
回复

使用道具 举报

发表于 2008-5-5 15:02:57 | 显示全部楼层
等指定 head的目录 -I/...
回复

使用道具 举报

发表于 2010-8-30 12:19:11 | 显示全部楼层
该有到函数也没有阿 。。。。。。。。。。

你用到2.6到kernel的话,必须些Makefile
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-3-28 20:38 , Processed in 0.078622 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表