Home
last modified time | relevance | path

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

/linux-6.6.21/drivers/misc/c2port/
Dcore.c33 static struct class *c2port_class; variable
918 c2dev->dev = device_create(c2port_class, NULL, 0, c2dev, in c2port_device_register()
965 device_destroy(c2port_class, c2dev->id); in c2port_device_unregister()
980 c2port_class = class_create("c2port"); in c2port_init()
981 if (IS_ERR(c2port_class)) { in c2port_init()
983 return PTR_ERR(c2port_class); in c2port_init()
985 c2port_class->dev_groups = c2port_groups; in c2port_init()
992 class_destroy(c2port_class); in c2port_exit()