Lines Matching refs:devt
603 dev_t devt; in hwicap_setup() local
632 devt = MKDEV(XHWICAP_MAJOR, XHWICAP_MINOR + id); in hwicap_setup()
647 drvdata->devt = devt; in hwicap_setup()
657 retval = cdev_add(&drvdata->cdev, devt, 1); in hwicap_setup()
663 device_create(&icap_class, dev, devt, NULL, "%s%d", DRIVER_NAME, id); in hwicap_setup()
723 device_destroy(&icap_class, drvdata->devt); in hwicap_drv_remove()
727 probed_devices[MINOR(dev->devt)-XHWICAP_MINOR] = 0; in hwicap_drv_remove()
750 dev_t devt; in hwicap_module_init() local
758 devt = MKDEV(XHWICAP_MAJOR, XHWICAP_MINOR); in hwicap_module_init()
759 retval = register_chrdev_region(devt, in hwicap_module_init()
772 unregister_chrdev_region(devt, HWICAP_DEVICES); in hwicap_module_init()
779 dev_t devt = MKDEV(XHWICAP_MAJOR, XHWICAP_MINOR); in hwicap_module_cleanup() local
785 unregister_chrdev_region(devt, HWICAP_DEVICES); in hwicap_module_cleanup()