i2c eeprom driver
在linux/drivers/i2c/chips 下有eeprom.c driver, 本人想试着锻炼i2c driver编写能力。但是遇到问题了。 望高手赐教。 我的步骤 1. 在arch/arm/mach-…
为什么运行测试一个驱动程序会显示无法open 想象啊?
#include<stdlib.h> #include<stdio.h> #include<sys/types.h> #include<sys/stat.h> #include<fcntl.h> int main() {  &nbs…
LDD3的scullp模块问题
只是在scullp_read_procmem(char* buf,char** start,off_t offset,int count,int* eof,void* data) 函数中最后return len前加了一句:printk(KERN_ALER…
中断问题
LDD3的 scull和short模块调试: scull的main.c中: ssize_t scull_read(struct file *filp, char __user *buf, size_t count,       &n…
ioremap()这个神秘的地址究竟从何而来 ?
正在为一块板子(2410)写A/D的驱动,被告知ADC_DATA的地址是0x10000020, 那么ADC_DATA = ioremap(0x10000020,4),就搞定了。 但让我困惑的是: ADC_…
broadcom网卡驱动安装问题
各位高手,咨询相关Redhat as5的一个网卡驱动安装问题(kernel: 2.6.18-8.e15xen i686) 安装流程: 官方下载了broadcom Netlink 5784 for  lin…
无线网卡驱动编译问题
我在编译无线网卡驱动时遇到以下两个警告,不知道怎么才能消除,请教各位大人 WARNING: modpost: GPL-incompatible module vntmusb.ko uses future GP…
为什么读取linux 设备文件event,数据读不全
我使用evtest.c读取/dev/input/event5,event5是我自定义的usb hid设备的设备文件,可是每次读取该文件,读取的bytes总是小于实际设备上传的bytes.哪位高…