Lines Matching refs:cdevs
3039 driver->cdevs[index] = cdev_alloc(); in tty_cdev_add()
3040 if (!driver->cdevs[index]) in tty_cdev_add()
3042 driver->cdevs[index]->ops = &tty_fops; in tty_cdev_add()
3043 driver->cdevs[index]->owner = driver->owner; in tty_cdev_add()
3044 err = cdev_add(driver->cdevs[index], dev, count); in tty_cdev_add()
3046 kobject_put(&driver->cdevs[index]->kobj); in tty_cdev_add()
3188 cdev_del(driver->cdevs[index]); in tty_unregister_device()
3189 driver->cdevs[index] = NULL; in tty_unregister_device()
3207 unsigned int cdevs = 1; in __tty_alloc_driver() local
3241 cdevs = lines; in __tty_alloc_driver()
3244 driver->cdevs = kcalloc(cdevs, sizeof(*driver->cdevs), GFP_KERNEL); in __tty_alloc_driver()
3245 if (!driver->cdevs) { in __tty_alloc_driver()
3255 kfree(driver->cdevs); in __tty_alloc_driver()
3279 cdev_del(driver->cdevs[0]); in destruct_tty_driver()
3281 kfree(driver->cdevs); in destruct_tty_driver()