Lines Matching refs:cdevs
3148 driver->cdevs[index] = cdev_alloc(); in tty_cdev_add()
3149 if (!driver->cdevs[index]) in tty_cdev_add()
3151 driver->cdevs[index]->ops = &tty_fops; in tty_cdev_add()
3152 driver->cdevs[index]->owner = driver->owner; in tty_cdev_add()
3153 err = cdev_add(driver->cdevs[index], dev, count); in tty_cdev_add()
3155 kobject_put(&driver->cdevs[index]->kobj); in tty_cdev_add()
3294 cdev_del(driver->cdevs[index]); in tty_unregister_device()
3295 driver->cdevs[index] = NULL; in tty_unregister_device()
3313 unsigned int cdevs = 1; in __tty_alloc_driver() local
3346 cdevs = lines; in __tty_alloc_driver()
3349 driver->cdevs = kcalloc(cdevs, sizeof(*driver->cdevs), GFP_KERNEL); in __tty_alloc_driver()
3350 if (!driver->cdevs) { in __tty_alloc_driver()
3360 kfree(driver->cdevs); in __tty_alloc_driver()
3384 cdev_del(driver->cdevs[0]); in destruct_tty_driver()
3386 kfree(driver->cdevs); in destruct_tty_driver()