Home
last modified time | relevance | path

Searched refs:c2port_class (Results 1 – 1 of 1) sorted by relevance

/drivers/misc/c2port/
Dcore.c37 static struct class *c2port_class; variable
914 c2dev->dev = device_create(c2port_class, NULL, 0, c2dev, in c2port_device_register()
945 device_destroy(c2port_class, 0); in c2port_device_register()
971 device_destroy(c2port_class, c2dev->id); in c2port_device_unregister()
986 c2port_class = class_create(THIS_MODULE, "c2port"); in c2port_init()
987 if (IS_ERR(c2port_class)) { in c2port_init()
989 return PTR_ERR(c2port_class); in c2port_init()
991 c2port_class->dev_attrs = c2port_attrs; in c2port_init()
998 class_destroy(c2port_class); in c2port_exit()