全部博文(685)
发布时间:2014-07-25 05:12:19
原文地址:http://blog.csdn.net/liaozc/article/details/6655030I2C子系统驱动(二) 上一篇文章讲述了I2C子系统体系结构,总线驱动、设备驱动的知识点,下面就S3C2440 I2C总线驱动的实现详细讲解,它的源码位于drivers/i2c/busses/i2c-s3c2410.c一、I2C平台设备资源 &.........【阅读全文】
发布时间:2014-05-12 23:52:33
readb(), readw(), readl()函数功能:从内存映射的 I/O 空间读取数据。readb 从 I/O 读取 8 位数据 ( 1 字节 );readw 从 I/O 读取 16 位数据 ( 2 字节 );readl 从 I/O 读取 32 位数据 ( 4 字节 )。源文件定义位置:arch/$(ARCH)/kernel/io.c头文件的位置:include/asm-$(ARCH)/io.h#include .........【阅读全文】
发布时间:2014-05-07 23:49:27
原文地址:http://hi.baidu.com/zengzhaonong/item/d39050cef00f5224e80f2e46sock->sk_buff/usr/src/linux-2.6.19/include/linux/skbuff.hstruct sk_buff { struct sk_buff *next; struct sk_buff *prev; .........【阅读全文】