Searched refs:raw_class (Results 1 - 1 of 1) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/char/
H A Draw.c30 static struct class *raw_class; variable in typeref:struct:class
130 device_destroy(raw_class, MKDEV(RAW_MAJOR, rq->raw_minor));
131 device_create(raw_class, NULL, MKDEV(RAW_MAJOR, rq->raw_minor),
203 device_destroy(raw_class,
279 raw_class = class_create(THIS_MODULE, "raw");
280 if (IS_ERR(raw_class)) {
283 ret = PTR_ERR(raw_class);
286 device_create(raw_class, NULL, MKDEV(RAW_MAJOR, 0), "rawctl");
298 device_destroy(raw_class, MKDEV(RAW_MAJOR, 0));
299 class_destroy(raw_class);
[all...]

Completed in 104 milliseconds