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
927 c2dev->dev = device_create(c2port_class, NULL, 0, c2dev, in c2port_device_register()
974 device_destroy(c2port_class, c2dev->id); in c2port_device_unregister()
989 c2port_class = class_create(THIS_MODULE, "c2port"); in c2port_init()
990 if (IS_ERR(c2port_class)) { in c2port_init()
992 return PTR_ERR(c2port_class); in c2port_init()
994 c2port_class->dev_groups = c2port_groups; in c2port_init()
1001 class_destroy(c2port_class); in c2port_exit()