通过ioctl途径获取数据的一般方法

bma020的例子

static long bma020_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
{

。。。

}

static const struct file_operations bma020_fops = {
    .owner = THIS_MODULE,
    .read = bma020_read,
    .write = bma020_write,
    .open = bma020_open,
    .release = bma020_close,
    .unlocked_ioctl = bma020_ioctl,
};

/* May 4th 2009 modified*
 * add miscdevices for bma
 */
static struct miscdevice bma_device = {
    .minor = MISC_DYNAMIC_MINOR,
    .name = "bma",
    .fops = &bma020_fops,
};

 

上面三个东西,第三个结构体指向第二个结构体,第二个结构体包含的成员unlocked_ioctl是个函数指针,指向第一个函数,ioctl函数。获取数据时,须打开上面第三个结构体定义的这个miscdevice设备,设备名就是其成员name:bma

转载于:https://www.cnblogs.com/yiru/archive/2013/02/27/2934725.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值