标签:style blog class code color c
#include <linux/fs.h>
int alloc_chrdev_region(dev_t *dev,
unsigned int firstminor,
unsigned int count,
char *name)
typedef unsigned long dev_t
MAJOR(dev_t dev); //主设备号
MINOR(dev_t dev); //次设备号
该函数需要传递给它指定的第一个次设备号firstminor(一般为0)和要分配的设备数count,以及设备名,调用该函数后自动分配得到的设备号保存在dev中。
alloc_chrdev_region,布布扣,bubuko.com
标签:style blog class code color c
原文地址:http://www.cnblogs.com/lodovico/p/3708531.html