Lines Matching defs:index
791 void vcs_make_sysfs(int index)
793 device_create(vc_class, NULL, MKDEV(VCS_MAJOR, index + 1), NULL,
794 "vcs%u", index + 1);
795 device_create(vc_class, NULL, MKDEV(VCS_MAJOR, index + 65), NULL,
796 "vcsu%u", index + 1);
797 device_create(vc_class, NULL, MKDEV(VCS_MAJOR, index + 129), NULL,
798 "vcsa%u", index + 1);
801 void vcs_remove_sysfs(int index)
803 device_destroy(vc_class, MKDEV(VCS_MAJOR, index + 1));
804 device_destroy(vc_class, MKDEV(VCS_MAJOR, index + 65));
805 device_destroy(vc_class, MKDEV(VCS_MAJOR, index + 129));