[PATCH] add sysfs attr to re-emit device hotplug event
[deliverable/linux.git] / drivers / base / class.c
CommitLineData
1da177e4
LT
1/*
2 * class.c - basic device class management
3 *
4 * Copyright (c) 2002-3 Patrick Mochel
5 * Copyright (c) 2002-3 Open Source Development Labs
6 * Copyright (c) 2003-2004 Greg Kroah-Hartman
7 * Copyright (c) 2003-2004 IBM Corp.
8 *
9 * This file is released under the GPLv2
10 *
11 */
12
13#include <linux/config.h>
14#include <linux/device.h>
15#include <linux/module.h>
16#include <linux/init.h>
17#include <linux/string.h>
18#include <linux/kdev_t.h>
e9ba6365 19#include <linux/err.h>
1da177e4
LT
20#include "base.h"
21
22#define to_class_attr(_attr) container_of(_attr, struct class_attribute, attr)
23#define to_class(obj) container_of(obj, struct class, subsys.kset.kobj)
24
25static ssize_t
26class_attr_show(struct kobject * kobj, struct attribute * attr, char * buf)
27{
28 struct class_attribute * class_attr = to_class_attr(attr);
29 struct class * dc = to_class(kobj);
4a0c20bf 30 ssize_t ret = -EIO;
1da177e4
LT
31
32 if (class_attr->show)
33 ret = class_attr->show(dc, buf);
34 return ret;
35}
36
37static ssize_t
38class_attr_store(struct kobject * kobj, struct attribute * attr,
39 const char * buf, size_t count)
40{
41 struct class_attribute * class_attr = to_class_attr(attr);
42 struct class * dc = to_class(kobj);
4a0c20bf 43 ssize_t ret = -EIO;
1da177e4
LT
44
45 if (class_attr->store)
46 ret = class_attr->store(dc, buf, count);
47 return ret;
48}
49
50static void class_release(struct kobject * kobj)
51{
52 struct class *class = to_class(kobj);
53
54 pr_debug("class '%s': release.\n", class->name);
55
56 if (class->class_release)
57 class->class_release(class);
58 else
59 pr_debug("class '%s' does not have a release() function, "
60 "be careful\n", class->name);
61}
62
63static struct sysfs_ops class_sysfs_ops = {
64 .show = class_attr_show,
65 .store = class_attr_store,
66};
67
68static struct kobj_type ktype_class = {
69 .sysfs_ops = &class_sysfs_ops,
70 .release = class_release,
71};
72
73/* Hotplug events for classes go to the class_obj subsys */
74static decl_subsys(class, &ktype_class, NULL);
75
76
77int class_create_file(struct class * cls, const struct class_attribute * attr)
78{
79 int error;
80 if (cls) {
81 error = sysfs_create_file(&cls->subsys.kset.kobj, &attr->attr);
82 } else
83 error = -EINVAL;
84 return error;
85}
86
87void class_remove_file(struct class * cls, const struct class_attribute * attr)
88{
89 if (cls)
90 sysfs_remove_file(&cls->subsys.kset.kobj, &attr->attr);
91}
92
93struct class * class_get(struct class * cls)
94{
95 if (cls)
96 return container_of(subsys_get(&cls->subsys), struct class, subsys);
97 return NULL;
98}
99
100void class_put(struct class * cls)
101{
102 subsys_put(&cls->subsys);
103}
104
105
106static int add_class_attrs(struct class * cls)
107{
108 int i;
109 int error = 0;
110
111 if (cls->class_attrs) {
112 for (i = 0; attr_name(cls->class_attrs[i]); i++) {
113 error = class_create_file(cls,&cls->class_attrs[i]);
114 if (error)
115 goto Err;
116 }
117 }
118 Done:
119 return error;
120 Err:
121 while (--i >= 0)
122 class_remove_file(cls,&cls->class_attrs[i]);
123 goto Done;
124}
125
126static void remove_class_attrs(struct class * cls)
127{
128 int i;
129
130 if (cls->class_attrs) {
131 for (i = 0; attr_name(cls->class_attrs[i]); i++)
132 class_remove_file(cls,&cls->class_attrs[i]);
133 }
134}
135
136int class_register(struct class * cls)
137{
138 int error;
139
140 pr_debug("device class '%s': registering\n", cls->name);
141
142 INIT_LIST_HEAD(&cls->children);
143 INIT_LIST_HEAD(&cls->interfaces);
144 init_MUTEX(&cls->sem);
145 error = kobject_set_name(&cls->subsys.kset.kobj, "%s", cls->name);
146 if (error)
147 return error;
148
149 subsys_set_kset(cls, class_subsys);
150
151 error = subsystem_register(&cls->subsys);
152 if (!error) {
153 error = add_class_attrs(class_get(cls));
154 class_put(cls);
155 }
156 return error;
157}
158
159void class_unregister(struct class * cls)
160{
161 pr_debug("device class '%s': unregistering\n", cls->name);
162 remove_class_attrs(cls);
163 subsystem_unregister(&cls->subsys);
164}
165
e9ba6365 166static void class_create_release(struct class *cls)
167{
168 kfree(cls);
169}
170
171static void class_device_create_release(struct class_device *class_dev)
172{
173 kfree(class_dev);
174}
175
2fc68447 176/**
177 * class_create - create a struct class structure
178 * @owner: pointer to the module that is to "own" this struct class
179 * @name: pointer to a string for the name of this class.
180 *
181 * This is used to create a struct class pointer that can then be used
182 * in calls to class_device_create().
183 *
184 * Note, the pointer created here is to be destroyed when finished by
185 * making a call to class_destroy().
186 */
e9ba6365 187struct class *class_create(struct module *owner, char *name)
188{
189 struct class *cls;
190 int retval;
191
4aed0644 192 cls = kzalloc(sizeof(*cls), GFP_KERNEL);
e9ba6365 193 if (!cls) {
194 retval = -ENOMEM;
195 goto error;
196 }
e9ba6365 197
198 cls->name = name;
199 cls->owner = owner;
200 cls->class_release = class_create_release;
201 cls->release = class_device_create_release;
202
203 retval = class_register(cls);
204 if (retval)
205 goto error;
206
207 return cls;
208
209error:
210 kfree(cls);
211 return ERR_PTR(retval);
212}
213
2fc68447 214/**
215 * class_destroy - destroys a struct class structure
216 * @cs: pointer to the struct class that is to be destroyed
217 *
218 * Note, the pointer to be destroyed must have been created with a call
219 * to class_create().
220 */
e9ba6365 221void class_destroy(struct class *cls)
222{
223 if ((cls == NULL) || (IS_ERR(cls)))
224 return;
225
226 class_unregister(cls);
227}
1da177e4
LT
228
229/* Class Device Stuff */
230
231int class_device_create_file(struct class_device * class_dev,
232 const struct class_device_attribute * attr)
233{
234 int error = -EINVAL;
235 if (class_dev)
236 error = sysfs_create_file(&class_dev->kobj, &attr->attr);
237 return error;
238}
239
240void class_device_remove_file(struct class_device * class_dev,
241 const struct class_device_attribute * attr)
242{
243 if (class_dev)
244 sysfs_remove_file(&class_dev->kobj, &attr->attr);
245}
246
247int class_device_create_bin_file(struct class_device *class_dev,
248 struct bin_attribute *attr)
249{
250 int error = -EINVAL;
251 if (class_dev)
252 error = sysfs_create_bin_file(&class_dev->kobj, attr);
253 return error;
254}
255
256void class_device_remove_bin_file(struct class_device *class_dev,
257 struct bin_attribute *attr)
258{
259 if (class_dev)
260 sysfs_remove_bin_file(&class_dev->kobj, attr);
261}
262
263static ssize_t
264class_device_attr_show(struct kobject * kobj, struct attribute * attr,
265 char * buf)
266{
267 struct class_device_attribute * class_dev_attr = to_class_dev_attr(attr);
268 struct class_device * cd = to_class_dev(kobj);
269 ssize_t ret = 0;
270
271 if (class_dev_attr->show)
272 ret = class_dev_attr->show(cd, buf);
273 return ret;
274}
275
276static ssize_t
277class_device_attr_store(struct kobject * kobj, struct attribute * attr,
278 const char * buf, size_t count)
279{
280 struct class_device_attribute * class_dev_attr = to_class_dev_attr(attr);
281 struct class_device * cd = to_class_dev(kobj);
282 ssize_t ret = 0;
283
284 if (class_dev_attr->store)
285 ret = class_dev_attr->store(cd, buf, count);
286 return ret;
287}
288
289static struct sysfs_ops class_dev_sysfs_ops = {
290 .show = class_device_attr_show,
291 .store = class_device_attr_store,
292};
293
294static void class_dev_release(struct kobject * kobj)
295{
296 struct class_device *cd = to_class_dev(kobj);
297 struct class * cls = cd->class;
298
299 pr_debug("device class '%s': release.\n", cd->class_id);
300
fef6ec8d
JJ
301 kfree(cd->devt_attr);
302 cd->devt_attr = NULL;
208f3d61 303
1da177e4
LT
304 if (cls->release)
305 cls->release(cd);
306 else {
307 printk(KERN_ERR "Device class '%s' does not have a release() function, "
308 "it is broken and must be fixed.\n",
309 cd->class_id);
310 WARN_ON(1);
311 }
312}
313
314static struct kobj_type ktype_class_device = {
315 .sysfs_ops = &class_dev_sysfs_ops,
316 .release = class_dev_release,
317};
318
319static int class_hotplug_filter(struct kset *kset, struct kobject *kobj)
320{
321 struct kobj_type *ktype = get_ktype(kobj);
322
323 if (ktype == &ktype_class_device) {
324 struct class_device *class_dev = to_class_dev(kobj);
325 if (class_dev->class)
326 return 1;
327 }
328 return 0;
329}
330
419cab3f 331static const char *class_hotplug_name(struct kset *kset, struct kobject *kobj)
1da177e4
LT
332{
333 struct class_device *class_dev = to_class_dev(kobj);
334
335 return class_dev->class->name;
336}
337
338static int class_hotplug(struct kset *kset, struct kobject *kobj, char **envp,
339 int num_envp, char *buffer, int buffer_size)
340{
341 struct class_device *class_dev = to_class_dev(kobj);
342 int i = 0;
343 int length = 0;
344 int retval = 0;
345
346 pr_debug("%s - name = %s\n", __FUNCTION__, class_dev->class_id);
347
348 if (class_dev->dev) {
349 /* add physical device, backing this device */
350 struct device *dev = class_dev->dev;
351 char *path = kobject_get_path(&dev->kobj, GFP_KERNEL);
352
353 add_hotplug_env_var(envp, num_envp, &i, buffer, buffer_size,
354 &length, "PHYSDEVPATH=%s", path);
355 kfree(path);
356
357 if (dev->bus)
358 add_hotplug_env_var(envp, num_envp, &i,
359 buffer, buffer_size, &length,
360 "PHYSDEVBUS=%s", dev->bus->name);
361
362 if (dev->driver)
363 add_hotplug_env_var(envp, num_envp, &i,
364 buffer, buffer_size, &length,
365 "PHYSDEVDRIVER=%s", dev->driver->name);
366 }
367
368 if (MAJOR(class_dev->devt)) {
369 add_hotplug_env_var(envp, num_envp, &i,
370 buffer, buffer_size, &length,
371 "MAJOR=%u", MAJOR(class_dev->devt));
372
373 add_hotplug_env_var(envp, num_envp, &i,
374 buffer, buffer_size, &length,
375 "MINOR=%u", MINOR(class_dev->devt));
376 }
377
378 /* terminate, set to next free slot, shrink available space */
379 envp[i] = NULL;
380 envp = &envp[i];
381 num_envp -= i;
382 buffer = &buffer[length];
383 buffer_size -= length;
384
385 if (class_dev->class->hotplug) {
386 /* have the bus specific function add its stuff */
387 retval = class_dev->class->hotplug (class_dev, envp, num_envp,
388 buffer, buffer_size);
389 if (retval) {
390 pr_debug ("%s - hotplug() returned %d\n",
391 __FUNCTION__, retval);
392 }
393 }
394
395 return retval;
396}
397
398static struct kset_hotplug_ops class_hotplug_ops = {
399 .filter = class_hotplug_filter,
400 .name = class_hotplug_name,
401 .hotplug = class_hotplug,
402};
403
404static decl_subsys(class_obj, &ktype_class_device, &class_hotplug_ops);
405
406
407static int class_device_add_attrs(struct class_device * cd)
408{
409 int i;
410 int error = 0;
411 struct class * cls = cd->class;
412
413 if (cls->class_dev_attrs) {
414 for (i = 0; attr_name(cls->class_dev_attrs[i]); i++) {
415 error = class_device_create_file(cd,
416 &cls->class_dev_attrs[i]);
417 if (error)
418 goto Err;
419 }
420 }
421 Done:
422 return error;
423 Err:
424 while (--i >= 0)
425 class_device_remove_file(cd,&cls->class_dev_attrs[i]);
426 goto Done;
427}
428
429static void class_device_remove_attrs(struct class_device * cd)
430{
431 int i;
432 struct class * cls = cd->class;
433
434 if (cls->class_dev_attrs) {
435 for (i = 0; attr_name(cls->class_dev_attrs[i]); i++)
436 class_device_remove_file(cd,&cls->class_dev_attrs[i]);
437 }
438}
439
440static ssize_t show_dev(struct class_device *class_dev, char *buf)
441{
442 return print_dev_t(buf, class_dev->devt);
443}
1da177e4 444
a7fd6706
KS
445static ssize_t store_uevent(struct class_device *class_dev,
446 const char *buf, size_t count)
447{
448 kobject_hotplug(&class_dev->kobj, KOBJ_ADD);
449 return count;
450}
451
1da177e4
LT
452void class_device_initialize(struct class_device *class_dev)
453{
454 kobj_set_kset_s(class_dev, class_obj_subsys);
455 kobject_init(&class_dev->kobj);
456 INIT_LIST_HEAD(&class_dev->node);
457}
458
76d1ce00
DT
459static char *make_class_name(struct class_device *class_dev)
460{
461 char *name;
462 int size;
463
464 size = strlen(class_dev->class->name) +
465 strlen(kobject_name(&class_dev->kobj)) + 2;
466
467 name = kmalloc(size, GFP_KERNEL);
468 if (!name)
469 return ERR_PTR(-ENOMEM);
470
471 strcpy(name, class_dev->class->name);
472 strcat(name, ":");
473 strcat(name, kobject_name(&class_dev->kobj));
474 return name;
475}
476
1da177e4
LT
477int class_device_add(struct class_device *class_dev)
478{
479 struct class * parent = NULL;
480 struct class_interface * class_intf;
76d1ce00 481 char *class_name = NULL;
1da177e4
LT
482 int error;
483
484 class_dev = class_device_get(class_dev);
485 if (!class_dev)
486 return -EINVAL;
487
488 if (!strlen(class_dev->class_id)) {
489 error = -EINVAL;
490 goto register_done;
491 }
492
493 parent = class_get(class_dev->class);
494
495 pr_debug("CLASS: registering class device: ID = '%s'\n",
496 class_dev->class_id);
497
498 /* first, register with generic layer. */
499 kobject_set_name(&class_dev->kobj, "%s", class_dev->class_id);
500 if (parent)
501 class_dev->kobj.parent = &parent->subsys.kset.kobj;
502
503 if ((error = kobject_add(&class_dev->kobj)))
504 goto register_done;
505
e9ba6365 506 /* add the needed attributes to this device */
a7fd6706
KS
507 class_dev->uevent_attr.attr.name = "uevent";
508 class_dev->uevent_attr.attr.mode = S_IWUSR;
509 class_dev->uevent_attr.attr.owner = parent->owner;
510 class_dev->uevent_attr.store = store_uevent;
511 class_device_create_file(class_dev, &class_dev->uevent_attr);
512
e9ba6365 513 if (MAJOR(class_dev->devt)) {
514 struct class_device_attribute *attr;
4aed0644 515 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
e9ba6365 516 if (!attr) {
517 error = -ENOMEM;
518 kobject_del(&class_dev->kobj);
519 goto register_done;
520 }
e9ba6365 521 attr->attr.name = "dev";
522 attr->attr.mode = S_IRUGO;
523 attr->attr.owner = parent->owner;
524 attr->show = show_dev;
e9ba6365 525 class_device_create_file(class_dev, attr);
526 class_dev->devt_attr = attr;
527 }
528
529 class_device_add_attrs(class_dev);
76d1ce00
DT
530 if (class_dev->dev) {
531 class_name = make_class_name(class_dev);
e9ba6365 532 sysfs_create_link(&class_dev->kobj,
533 &class_dev->dev->kobj, "device");
76d1ce00
DT
534 sysfs_create_link(&class_dev->dev->kobj, &class_dev->kobj,
535 class_name);
536 }
e9ba6365 537
dbe9035d
DT
538 kobject_hotplug(&class_dev->kobj, KOBJ_ADD);
539
e9ba6365 540 /* notify any interfaces this device is now here */
1da177e4
LT
541 if (parent) {
542 down(&parent->sem);
543 list_add_tail(&class_dev->node, &parent->children);
544 list_for_each_entry(class_intf, &parent->interfaces, node)
545 if (class_intf->add)
d8539d81 546 class_intf->add(class_dev, class_intf);
1da177e4
LT
547 up(&parent->sem);
548 }
e9ba6365 549
1da177e4
LT
550 register_done:
551 if (error && parent)
552 class_put(parent);
553 class_device_put(class_dev);
76d1ce00 554 kfree(class_name);
1da177e4
LT
555 return error;
556}
557
558int class_device_register(struct class_device *class_dev)
559{
560 class_device_initialize(class_dev);
561 return class_device_add(class_dev);
562}
563
2fc68447 564/**
565 * class_device_create - creates a class device and registers it with sysfs
566 * @cs: pointer to the struct class that this device should be registered to.
567 * @dev: the dev_t for the char device to be added.
568 * @device: a pointer to a struct device that is assiociated with this class device.
569 * @fmt: string for the class device's name
570 *
571 * This function can be used by char device classes. A struct
572 * class_device will be created in sysfs, registered to the specified
573 * class. A "dev" file will be created, showing the dev_t for the
574 * device. The pointer to the struct class_device will be returned from
575 * the call. Any further sysfs files that might be required can be
576 * created using this pointer.
577 *
578 * Note: the struct class passed to this function must have previously
579 * been created with a call to class_create().
580 */
e9ba6365 581struct class_device *class_device_create(struct class *cls, dev_t devt,
582 struct device *device, char *fmt, ...)
583{
584 va_list args;
585 struct class_device *class_dev = NULL;
586 int retval = -ENODEV;
587
588 if (cls == NULL || IS_ERR(cls))
589 goto error;
590
4aed0644 591 class_dev = kzalloc(sizeof(*class_dev), GFP_KERNEL);
e9ba6365 592 if (!class_dev) {
593 retval = -ENOMEM;
594 goto error;
595 }
e9ba6365 596
597 class_dev->devt = devt;
598 class_dev->dev = device;
599 class_dev->class = cls;
600
601 va_start(args, fmt);
602 vsnprintf(class_dev->class_id, BUS_ID_SIZE, fmt, args);
603 va_end(args);
604 retval = class_device_register(class_dev);
605 if (retval)
606 goto error;
607
608 return class_dev;
609
610error:
611 kfree(class_dev);
612 return ERR_PTR(retval);
613}
614
1da177e4
LT
615void class_device_del(struct class_device *class_dev)
616{
617 struct class * parent = class_dev->class;
618 struct class_interface * class_intf;
76d1ce00 619 char *class_name = NULL;
1da177e4
LT
620
621 if (parent) {
622 down(&parent->sem);
623 list_del_init(&class_dev->node);
624 list_for_each_entry(class_intf, &parent->interfaces, node)
625 if (class_intf->remove)
d8539d81 626 class_intf->remove(class_dev, class_intf);
1da177e4
LT
627 up(&parent->sem);
628 }
629
76d1ce00
DT
630 if (class_dev->dev) {
631 class_name = make_class_name(class_dev);
1da177e4 632 sysfs_remove_link(&class_dev->kobj, "device");
76d1ce00
DT
633 sysfs_remove_link(&class_dev->dev->kobj, class_name);
634 }
a7fd6706 635 class_device_remove_file(class_dev, &class_dev->uevent_attr);
208f3d61 636 if (class_dev->devt_attr)
e9ba6365 637 class_device_remove_file(class_dev, class_dev->devt_attr);
1da177e4
LT
638 class_device_remove_attrs(class_dev);
639
0700f56b 640 kobject_hotplug(&class_dev->kobj, KOBJ_REMOVE);
1da177e4
LT
641 kobject_del(&class_dev->kobj);
642
643 if (parent)
644 class_put(parent);
76d1ce00 645 kfree(class_name);
1da177e4
LT
646}
647
648void class_device_unregister(struct class_device *class_dev)
649{
650 pr_debug("CLASS: Unregistering class device. ID = '%s'\n",
651 class_dev->class_id);
652 class_device_del(class_dev);
653 class_device_put(class_dev);
654}
655
2fc68447 656/**
657 * class_device_destroy - removes a class device that was created with class_device_create()
658 * @cls: the pointer to the struct class that this device was registered * with.
659 * @dev: the dev_t of the device that was previously registered.
660 *
661 * This call unregisters and cleans up a class device that was created with a
662 * call to class_device_create()
663 */
e9ba6365 664void class_device_destroy(struct class *cls, dev_t devt)
665{
666 struct class_device *class_dev = NULL;
667 struct class_device *class_dev_tmp;
668
669 down(&cls->sem);
670 list_for_each_entry(class_dev_tmp, &cls->children, node) {
671 if (class_dev_tmp->devt == devt) {
672 class_dev = class_dev_tmp;
673 break;
674 }
675 }
676 up(&cls->sem);
677
678 if (class_dev)
679 class_device_unregister(class_dev);
680}
681
1da177e4
LT
682int class_device_rename(struct class_device *class_dev, char *new_name)
683{
684 int error = 0;
3e51377d 685 char *old_class_name = NULL, *new_class_name = NULL;
1da177e4
LT
686
687 class_dev = class_device_get(class_dev);
688 if (!class_dev)
689 return -EINVAL;
690
691 pr_debug("CLASS: renaming '%s' to '%s'\n", class_dev->class_id,
692 new_name);
693
3e51377d
BN
694 if (class_dev->dev)
695 old_class_name = make_class_name(class_dev);
696
1da177e4
LT
697 strlcpy(class_dev->class_id, new_name, KOBJ_NAME_LEN);
698
699 error = kobject_rename(&class_dev->kobj, new_name);
700
3e51377d
BN
701 if (class_dev->dev) {
702 new_class_name = make_class_name(class_dev);
703 sysfs_create_link(&class_dev->dev->kobj, &class_dev->kobj,
704 new_class_name);
705 sysfs_remove_link(&class_dev->dev->kobj, old_class_name);
706 }
1da177e4
LT
707 class_device_put(class_dev);
708
3e51377d
BN
709 kfree(old_class_name);
710 kfree(new_class_name);
711
1da177e4
LT
712 return error;
713}
714
715struct class_device * class_device_get(struct class_device *class_dev)
716{
717 if (class_dev)
718 return to_class_dev(kobject_get(&class_dev->kobj));
719 return NULL;
720}
721
722void class_device_put(struct class_device *class_dev)
723{
724 kobject_put(&class_dev->kobj);
725}
726
727
728int class_interface_register(struct class_interface *class_intf)
729{
730 struct class *parent;
731 struct class_device *class_dev;
732
733 if (!class_intf || !class_intf->class)
734 return -ENODEV;
735
736 parent = class_get(class_intf->class);
737 if (!parent)
738 return -EINVAL;
739
740 down(&parent->sem);
741 list_add_tail(&class_intf->node, &parent->interfaces);
742 if (class_intf->add) {
743 list_for_each_entry(class_dev, &parent->children, node)
d8539d81 744 class_intf->add(class_dev, class_intf);
1da177e4
LT
745 }
746 up(&parent->sem);
747
748 return 0;
749}
750
751void class_interface_unregister(struct class_interface *class_intf)
752{
753 struct class * parent = class_intf->class;
754 struct class_device *class_dev;
755
756 if (!parent)
757 return;
758
759 down(&parent->sem);
760 list_del_init(&class_intf->node);
761 if (class_intf->remove) {
762 list_for_each_entry(class_dev, &parent->children, node)
d8539d81 763 class_intf->remove(class_dev, class_intf);
1da177e4
LT
764 }
765 up(&parent->sem);
766
767 class_put(parent);
768}
769
770
771
772int __init classes_init(void)
773{
774 int retval;
775
776 retval = subsystem_register(&class_subsys);
777 if (retval)
778 return retval;
779
780 /* ick, this is ugly, the things we go through to keep from showing up
781 * in sysfs... */
782 subsystem_init(&class_obj_subsys);
783 if (!class_obj_subsys.kset.subsys)
784 class_obj_subsys.kset.subsys = &class_obj_subsys;
785 return 0;
786}
787
788EXPORT_SYMBOL_GPL(class_create_file);
789EXPORT_SYMBOL_GPL(class_remove_file);
790EXPORT_SYMBOL_GPL(class_register);
791EXPORT_SYMBOL_GPL(class_unregister);
792EXPORT_SYMBOL_GPL(class_get);
793EXPORT_SYMBOL_GPL(class_put);
e9ba6365 794EXPORT_SYMBOL_GPL(class_create);
795EXPORT_SYMBOL_GPL(class_destroy);
1da177e4
LT
796
797EXPORT_SYMBOL_GPL(class_device_register);
798EXPORT_SYMBOL_GPL(class_device_unregister);
799EXPORT_SYMBOL_GPL(class_device_initialize);
800EXPORT_SYMBOL_GPL(class_device_add);
801EXPORT_SYMBOL_GPL(class_device_del);
802EXPORT_SYMBOL_GPL(class_device_get);
803EXPORT_SYMBOL_GPL(class_device_put);
e9ba6365 804EXPORT_SYMBOL_GPL(class_device_create);
805EXPORT_SYMBOL_GPL(class_device_destroy);
1da177e4
LT
806EXPORT_SYMBOL_GPL(class_device_create_file);
807EXPORT_SYMBOL_GPL(class_device_remove_file);
808EXPORT_SYMBOL_GPL(class_device_create_bin_file);
809EXPORT_SYMBOL_GPL(class_device_remove_bin_file);
810
811EXPORT_SYMBOL_GPL(class_interface_register);
812EXPORT_SYMBOL_GPL(class_interface_unregister);
This page took 0.120926 seconds and 5 git commands to generate.