Lines Matching refs:raw_class
36 static struct class *raw_class; variable
179 device_destroy(raw_class, raw); in bind_set()
182 device_destroy(raw_class, raw); in bind_set()
183 device_create(raw_class, NULL, raw, NULL, "raw%d", number); in bind_set()
333 raw_class = class_create(THIS_MODULE, "raw"); in raw_init()
334 if (IS_ERR(raw_class)) { in raw_init()
337 ret = PTR_ERR(raw_class); in raw_init()
340 raw_class->devnode = raw_devnode; in raw_init()
341 device_create(raw_class, NULL, MKDEV(RAW_MAJOR, 0), NULL, "rawctl"); in raw_init()
354 device_destroy(raw_class, MKDEV(RAW_MAJOR, 0)); in raw_exit()
355 class_destroy(raw_class); in raw_exit()