当前位置: 技术问答>linux和unix
头文件
来源: 互联网 发布时间:2015-07-20
本文导语: 小弟我刚接触驱动程序 在一些列空操作之后把模块加入内核 但是说unregister_chrdev是未定义的 不知道是哪个头文件没别写入 已经写入的头文件如下: #include #include #include #include #include #include #include #include #...
小弟我刚接触驱动程序
在一些列空操作之后把模块加入内核
但是说unregister_chrdev是未定义的
不知道是哪个头文件没别写入
已经写入的头文件如下:
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
/* PCI Driver needed */
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,1,0))
#include
#include
#else
#include
#include
#endif
在一些列空操作之后把模块加入内核
但是说unregister_chrdev是未定义的
不知道是哪个头文件没别写入
已经写入的头文件如下:
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
/* PCI Driver needed */
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,1,0))
#include
#include
#else
#include
#include
#endif
|
你include的头文件应该是不会缺什莫了
你的make文件是不是写的不对
Makefile
MAKE = make
CFLAGS = -D__KERNEL__ -DMODULE -I/usr/src/linux-2.4.20-8/include -Wall -O2
all:testmodule.o
$(CC) $(CFLAGS) -c testmodule.c
clean:
rm -f testmodule.o
你的make文件是不是写的不对
Makefile
MAKE = make
CFLAGS = -D__KERNEL__ -DMODULE -I/usr/src/linux-2.4.20-8/include -Wall -O2
all:testmodule.o
$(CC) $(CFLAGS) -c testmodule.c
clean:
rm -f testmodule.o
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。