码迷,mamicode.com
首页 > 其他好文 > 详细

驱动笔记 - 混杂设备常用函数

时间:2014-11-19 23:53:21      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:io   ar   sp   on   bs   ad   amp   linux   c   

#include <linux/miscdevice.h>
混杂设备:主设备号为10的字符设备
struct miscdevice
{
int minor; //次设备号
const char *name;
const struct file_operations *fops;
struct list_head list;
struct device *parent;
struct device *this_device;
}

混杂设备注册
int misc_register (struct miscdevice * misc);
int misc_deregister (struct miscdevice * misc);

 

例:

struct miscdevice misc = {
.minor = 12, //若需动态分配填255,不为0为静态分配
.name = DEVICE_NAME,
.fops = &dev_fops,
}

驱动笔记 - 混杂设备常用函数

标签:io   ar   sp   on   bs   ad   amp   linux   c   

原文地址:http://www.cnblogs.com/tolimit/p/4109387.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!