cdev、file operations 结构体

1、实现 cdev、file operations 结构体

2、申请设备号:alloc_chrdev_region(...)

3、为 cdev 申请空间 kmalloc(sizeof(struct cdev),GFP_KERNEL)

4、关联 cdev 、file operations , cdev_init(&dev->cdev,&file_operations)

5、关联设备号和cdev,cdev_add(&dev->cdev,)

你可能感兴趣的:(struct,File)