Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2896369
  • 博文数量: 674
  • 博客积分: 17881
  • 博客等级: 上将
  • 技术积分: 4849
  • 用 户 组: 普通用户
  • 注册时间: 2010-03-17 10:15
文章分类

全部博文(674)

文章存档

2013年(34)

2012年(146)

2011年(197)

2010年(297)

博文列表
标题:
标题 阅读 评论 转发 发布日期
linux UART串口驱动开发文档 721 0 1 2010-06-05
linux设备模型之uart驱动架构分析 1186 0 0 2010-06-05
ARM Linux中断机制分析 1460 0 0 2010-05-26
linux中断处理之IRQ中断 980 0 0 2010-05-26
S3C2410的外部中断 1823 0 0 2010-05-26
Linux时钟基本概念 1263 0 0 2010-05-25
Linux 时钟处理机制 879 0 0 2010-05-25
linux新内核的时钟机制代码读后感 1489 0 0 2010-05-24
hrtimer小记 2819 0 0 2010-05-24
hrtimer + clockevent + Timekeeping 992 0 0 2010-05-24
S3C2410 中断程序的实现 894 0 0 2010-05-16
s3c2410 Timer工作原理 899 0 0 2010-05-16
The Kernel Boot Process 962 0 0 2010-04-26
memory-translation-and-segmentation 1189 0 0 2010-04-26
Getting Physical With Memory 900 0 0 2010-04-26
Page Cache, the Affair Between Memory and Files 1552 0 0 2010-04-26
Anatomy of a Program in Memory 978 0 0 2010-04-26
start_kernel()函数分析 826 0 0 2010-04-26
Linux内核从start_kernel到init 1799 0 0 2010-04-26
ARM Linux启动分析----head-armv.S内幕 756 0 0 2010-04-26
给主人留下些什么吧!~~

chen_chuang2012-10-11 16:33

高手,有本书上写cdev初始化和注册是这样写的

static void VirtualDisk_setup_cdev(struct VirtualDisk *dev, int minor)
{
        int err;
        devno = MDDEV(VirtualDisk_major, minor);
        cdev_init(&dev->cdev, &VirtualDisk_fops);
        dev->cdev.owner = THIS_MOUDULE;
        dev->cdev.ops = &VirtualDisk_fops;
        err = cdev_add(&dev->cdev, debno, 1);
        if (err)
                printk(KERN_NOTICE "Error in cdev_add()\n");
}

而cdev_init里
void cdev_init(struct cdev *cdev, const struct file_operations *fops)
{
        memset(cdev, 0, sizeof *cdev);
        INIT_LIST_HEAD(&cdev->list);
        kobject_init(&cdev->kobj, &ktype_cdev_default);
        cdev->ops = fops;
}
已经有cdev->ops = fops了
那上面的代码cdev_init之后又有dev->cdev.ops ,这两个函数不一样吗,自我感觉有点多次一举,,,不太明白

回复  |  举报
留言热议
请登录后留言。

登录 注册