[PATCH] Driver Core: add the ability for class_device structures to be nested
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / base / class.c
blobc3e569730afe709e46973fbc456b9038cc76d8aa
1 /*
2 * class.c - basic device class management
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.
9 * This file is released under the GPLv2
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>
19 #include <linux/err.h>
20 #include "base.h"
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)
25 static ssize_t
26 class_attr_show(struct kobject * kobj, struct attribute * attr, char * buf)
28 struct class_attribute * class_attr = to_class_attr(attr);
29 struct class * dc = to_class(kobj);
30 ssize_t ret = -EIO;
32 if (class_attr->show)
33 ret = class_attr->show(dc, buf);
34 return ret;
37 static ssize_t
38 class_attr_store(struct kobject * kobj, struct attribute * attr,
39 const char * buf, size_t count)
41 struct class_attribute * class_attr = to_class_attr(attr);
42 struct class * dc = to_class(kobj);
43 ssize_t ret = -EIO;
45 if (class_attr->store)
46 ret = class_attr->store(dc, buf, count);
47 return ret;
50 static void class_release(struct kobject * kobj)
52 struct class *class = to_class(kobj);
54 pr_debug("class '%s': release.\n", class->name);
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);
63 static struct sysfs_ops class_sysfs_ops = {
64 .show = class_attr_show,
65 .store = class_attr_store,
68 static struct kobj_type ktype_class = {
69 .sysfs_ops = &class_sysfs_ops,
70 .release = class_release,
73 /* Hotplug events for classes go to the class_obj subsys */
74 static decl_subsys(class, &ktype_class, NULL);
77 int class_create_file(struct class * cls, const struct class_attribute * attr)
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;
87 void class_remove_file(struct class * cls, const struct class_attribute * attr)
89 if (cls)
90 sysfs_remove_file(&cls->subsys.kset.kobj, &attr->attr);
93 struct class * class_get(struct class * cls)
95 if (cls)
96 return container_of(subsys_get(&cls->subsys), struct class, subsys);
97 return NULL;
100 void class_put(struct class * cls)
102 if (cls)
103 subsys_put(&cls->subsys);
107 static int add_class_attrs(struct class * cls)
109 int i;
110 int error = 0;
112 if (cls->class_attrs) {
113 for (i = 0; attr_name(cls->class_attrs[i]); i++) {
114 error = class_create_file(cls,&cls->class_attrs[i]);
115 if (error)
116 goto Err;
119 Done:
120 return error;
121 Err:
122 while (--i >= 0)
123 class_remove_file(cls,&cls->class_attrs[i]);
124 goto Done;
127 static void remove_class_attrs(struct class * cls)
129 int i;
131 if (cls->class_attrs) {
132 for (i = 0; attr_name(cls->class_attrs[i]); i++)
133 class_remove_file(cls,&cls->class_attrs[i]);
137 int class_register(struct class * cls)
139 int error;
141 pr_debug("device class '%s': registering\n", cls->name);
143 INIT_LIST_HEAD(&cls->children);
144 INIT_LIST_HEAD(&cls->interfaces);
145 init_MUTEX(&cls->sem);
146 error = kobject_set_name(&cls->subsys.kset.kobj, "%s", cls->name);
147 if (error)
148 return error;
150 subsys_set_kset(cls, class_subsys);
152 error = subsystem_register(&cls->subsys);
153 if (!error) {
154 error = add_class_attrs(class_get(cls));
155 class_put(cls);
157 return error;
160 void class_unregister(struct class * cls)
162 pr_debug("device class '%s': unregistering\n", cls->name);
163 remove_class_attrs(cls);
164 subsystem_unregister(&cls->subsys);
167 static void class_create_release(struct class *cls)
169 pr_debug("%s called for %s\n", __FUNCTION__, cls->name);
170 kfree(cls);
173 static void class_device_create_release(struct class_device *class_dev)
175 pr_debug("%s called for %s\n", __FUNCTION__, class_dev->class_id);
176 kfree(class_dev);
179 /* needed to allow these devices to have parent class devices */
180 static int class_device_create_hotplug(struct class_device *class_dev,
181 char **envp, int num_envp,
182 char *buffer, int buffer_size)
184 pr_debug("%s called for %s\n", __FUNCTION__, class_dev->class_id);
185 return 0;
189 * class_create - create a struct class structure
190 * @owner: pointer to the module that is to "own" this struct class
191 * @name: pointer to a string for the name of this class.
193 * This is used to create a struct class pointer that can then be used
194 * in calls to class_device_create().
196 * Note, the pointer created here is to be destroyed when finished by
197 * making a call to class_destroy().
199 struct class *class_create(struct module *owner, char *name)
201 struct class *cls;
202 int retval;
204 cls = kzalloc(sizeof(*cls), GFP_KERNEL);
205 if (!cls) {
206 retval = -ENOMEM;
207 goto error;
210 cls->name = name;
211 cls->owner = owner;
212 cls->class_release = class_create_release;
213 cls->release = class_device_create_release;
215 retval = class_register(cls);
216 if (retval)
217 goto error;
219 return cls;
221 error:
222 kfree(cls);
223 return ERR_PTR(retval);
227 * class_destroy - destroys a struct class structure
228 * @cs: pointer to the struct class that is to be destroyed
230 * Note, the pointer to be destroyed must have been created with a call
231 * to class_create().
233 void class_destroy(struct class *cls)
235 if ((cls == NULL) || (IS_ERR(cls)))
236 return;
238 class_unregister(cls);
241 /* Class Device Stuff */
243 int class_device_create_file(struct class_device * class_dev,
244 const struct class_device_attribute * attr)
246 int error = -EINVAL;
247 if (class_dev)
248 error = sysfs_create_file(&class_dev->kobj, &attr->attr);
249 return error;
252 void class_device_remove_file(struct class_device * class_dev,
253 const struct class_device_attribute * attr)
255 if (class_dev)
256 sysfs_remove_file(&class_dev->kobj, &attr->attr);
259 int class_device_create_bin_file(struct class_device *class_dev,
260 struct bin_attribute *attr)
262 int error = -EINVAL;
263 if (class_dev)
264 error = sysfs_create_bin_file(&class_dev->kobj, attr);
265 return error;
268 void class_device_remove_bin_file(struct class_device *class_dev,
269 struct bin_attribute *attr)
271 if (class_dev)
272 sysfs_remove_bin_file(&class_dev->kobj, attr);
275 static ssize_t
276 class_device_attr_show(struct kobject * kobj, struct attribute * attr,
277 char * buf)
279 struct class_device_attribute * class_dev_attr = to_class_dev_attr(attr);
280 struct class_device * cd = to_class_dev(kobj);
281 ssize_t ret = 0;
283 if (class_dev_attr->show)
284 ret = class_dev_attr->show(cd, buf);
285 return ret;
288 static ssize_t
289 class_device_attr_store(struct kobject * kobj, struct attribute * attr,
290 const char * buf, size_t count)
292 struct class_device_attribute * class_dev_attr = to_class_dev_attr(attr);
293 struct class_device * cd = to_class_dev(kobj);
294 ssize_t ret = 0;
296 if (class_dev_attr->store)
297 ret = class_dev_attr->store(cd, buf, count);
298 return ret;
301 static struct sysfs_ops class_dev_sysfs_ops = {
302 .show = class_device_attr_show,
303 .store = class_device_attr_store,
306 static void class_dev_release(struct kobject * kobj)
308 struct class_device *cd = to_class_dev(kobj);
309 struct class * cls = cd->class;
311 pr_debug("device class '%s': release.\n", cd->class_id);
313 kfree(cd->devt_attr);
314 cd->devt_attr = NULL;
316 if (cd->release)
317 cd->release(cd);
318 else if (cls->release)
319 cls->release(cd);
320 else {
321 printk(KERN_ERR "Class Device '%s' does not have a release() function, "
322 "it is broken and must be fixed.\n",
323 cd->class_id);
324 WARN_ON(1);
328 static struct kobj_type ktype_class_device = {
329 .sysfs_ops = &class_dev_sysfs_ops,
330 .release = class_dev_release,
333 static int class_hotplug_filter(struct kset *kset, struct kobject *kobj)
335 struct kobj_type *ktype = get_ktype(kobj);
337 if (ktype == &ktype_class_device) {
338 struct class_device *class_dev = to_class_dev(kobj);
339 if (class_dev->class)
340 return 1;
342 return 0;
345 static const char *class_hotplug_name(struct kset *kset, struct kobject *kobj)
347 struct class_device *class_dev = to_class_dev(kobj);
349 return class_dev->class->name;
352 static int class_hotplug(struct kset *kset, struct kobject *kobj, char **envp,
353 int num_envp, char *buffer, int buffer_size)
355 struct class_device *class_dev = to_class_dev(kobj);
356 int i = 0;
357 int length = 0;
358 int retval = 0;
360 pr_debug("%s - name = %s\n", __FUNCTION__, class_dev->class_id);
362 if (class_dev->dev) {
363 /* add physical device, backing this device */
364 struct device *dev = class_dev->dev;
365 char *path = kobject_get_path(&dev->kobj, GFP_KERNEL);
367 add_hotplug_env_var(envp, num_envp, &i, buffer, buffer_size,
368 &length, "PHYSDEVPATH=%s", path);
369 kfree(path);
371 if (dev->bus)
372 add_hotplug_env_var(envp, num_envp, &i,
373 buffer, buffer_size, &length,
374 "PHYSDEVBUS=%s", dev->bus->name);
376 if (dev->driver)
377 add_hotplug_env_var(envp, num_envp, &i,
378 buffer, buffer_size, &length,
379 "PHYSDEVDRIVER=%s", dev->driver->name);
382 if (MAJOR(class_dev->devt)) {
383 add_hotplug_env_var(envp, num_envp, &i,
384 buffer, buffer_size, &length,
385 "MAJOR=%u", MAJOR(class_dev->devt));
387 add_hotplug_env_var(envp, num_envp, &i,
388 buffer, buffer_size, &length,
389 "MINOR=%u", MINOR(class_dev->devt));
392 /* terminate, set to next free slot, shrink available space */
393 envp[i] = NULL;
394 envp = &envp[i];
395 num_envp -= i;
396 buffer = &buffer[length];
397 buffer_size -= length;
399 if (class_dev->hotplug) {
400 /* have the class device specific function add its stuff */
401 retval = class_dev->hotplug(class_dev, envp, num_envp,
402 buffer, buffer_size);
403 if (retval)
404 pr_debug("class_dev->hotplug() returned %d\n", retval);
405 } else if (class_dev->class->hotplug) {
406 /* have the class specific function add its stuff */
407 retval = class_dev->class->hotplug(class_dev, envp, num_envp,
408 buffer, buffer_size);
409 if (retval)
410 pr_debug("class->hotplug() returned %d\n", retval);
413 return retval;
416 static struct kset_hotplug_ops class_hotplug_ops = {
417 .filter = class_hotplug_filter,
418 .name = class_hotplug_name,
419 .hotplug = class_hotplug,
422 static decl_subsys(class_obj, &ktype_class_device, &class_hotplug_ops);
425 static int class_device_add_attrs(struct class_device * cd)
427 int i;
428 int error = 0;
429 struct class * cls = cd->class;
431 if (cls->class_dev_attrs) {
432 for (i = 0; attr_name(cls->class_dev_attrs[i]); i++) {
433 error = class_device_create_file(cd,
434 &cls->class_dev_attrs[i]);
435 if (error)
436 goto Err;
439 Done:
440 return error;
441 Err:
442 while (--i >= 0)
443 class_device_remove_file(cd,&cls->class_dev_attrs[i]);
444 goto Done;
447 static void class_device_remove_attrs(struct class_device * cd)
449 int i;
450 struct class * cls = cd->class;
452 if (cls->class_dev_attrs) {
453 for (i = 0; attr_name(cls->class_dev_attrs[i]); i++)
454 class_device_remove_file(cd,&cls->class_dev_attrs[i]);
458 static ssize_t show_dev(struct class_device *class_dev, char *buf)
460 return print_dev_t(buf, class_dev->devt);
463 static ssize_t store_uevent(struct class_device *class_dev,
464 const char *buf, size_t count)
466 kobject_hotplug(&class_dev->kobj, KOBJ_ADD);
467 return count;
470 void class_device_initialize(struct class_device *class_dev)
472 kobj_set_kset_s(class_dev, class_obj_subsys);
473 kobject_init(&class_dev->kobj);
474 INIT_LIST_HEAD(&class_dev->node);
477 static char *make_class_name(struct class_device *class_dev)
479 char *name;
480 int size;
482 size = strlen(class_dev->class->name) +
483 strlen(kobject_name(&class_dev->kobj)) + 2;
485 name = kmalloc(size, GFP_KERNEL);
486 if (!name)
487 return ERR_PTR(-ENOMEM);
489 strcpy(name, class_dev->class->name);
490 strcat(name, ":");
491 strcat(name, kobject_name(&class_dev->kobj));
492 return name;
495 int class_device_add(struct class_device *class_dev)
497 struct class *parent_class = NULL;
498 struct class_device *parent_class_dev = NULL;
499 struct class_interface *class_intf;
500 char *class_name = NULL;
501 int error = -EINVAL;
503 class_dev = class_device_get(class_dev);
504 if (!class_dev)
505 return -EINVAL;
507 if (!strlen(class_dev->class_id))
508 goto register_done;
510 parent_class = class_get(class_dev->class);
511 if (!parent_class)
512 goto register_done;
513 parent_class_dev = class_device_get(class_dev->parent);
515 pr_debug("CLASS: registering class device: ID = '%s'\n",
516 class_dev->class_id);
518 /* first, register with generic layer. */
519 kobject_set_name(&class_dev->kobj, "%s", class_dev->class_id);
520 if (parent_class_dev)
521 class_dev->kobj.parent = &parent_class_dev->kobj;
522 else
523 class_dev->kobj.parent = &parent_class->subsys.kset.kobj;
525 error = kobject_add(&class_dev->kobj);
526 if (error)
527 goto register_done;
529 /* add the needed attributes to this device */
530 class_dev->uevent_attr.attr.name = "uevent";
531 class_dev->uevent_attr.attr.mode = S_IWUSR;
532 class_dev->uevent_attr.attr.owner = parent_class->owner;
533 class_dev->uevent_attr.store = store_uevent;
534 class_device_create_file(class_dev, &class_dev->uevent_attr);
536 if (MAJOR(class_dev->devt)) {
537 struct class_device_attribute *attr;
538 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
539 if (!attr) {
540 error = -ENOMEM;
541 kobject_del(&class_dev->kobj);
542 goto register_done;
544 attr->attr.name = "dev";
545 attr->attr.mode = S_IRUGO;
546 attr->attr.owner = parent_class->owner;
547 attr->show = show_dev;
548 class_device_create_file(class_dev, attr);
549 class_dev->devt_attr = attr;
552 class_device_add_attrs(class_dev);
553 if (class_dev->dev) {
554 class_name = make_class_name(class_dev);
555 sysfs_create_link(&class_dev->kobj,
556 &class_dev->dev->kobj, "device");
557 sysfs_create_link(&class_dev->dev->kobj, &class_dev->kobj,
558 class_name);
561 kobject_hotplug(&class_dev->kobj, KOBJ_ADD);
563 /* notify any interfaces this device is now here */
564 if (parent_class) {
565 down(&parent_class->sem);
566 list_add_tail(&class_dev->node, &parent_class->children);
567 list_for_each_entry(class_intf, &parent_class->interfaces, node)
568 if (class_intf->add)
569 class_intf->add(class_dev, class_intf);
570 up(&parent_class->sem);
573 register_done:
574 if (error) {
575 class_put(parent_class);
576 class_device_put(parent_class_dev);
578 class_device_put(class_dev);
579 kfree(class_name);
580 return error;
583 int class_device_register(struct class_device *class_dev)
585 class_device_initialize(class_dev);
586 return class_device_add(class_dev);
590 * class_device_create - creates a class device and registers it with sysfs
591 * @cs: pointer to the struct class that this device should be registered to.
592 * @parent: pointer to the parent struct class_device of this new device, if any.
593 * @dev: the dev_t for the char device to be added.
594 * @device: a pointer to a struct device that is assiociated with this class device.
595 * @fmt: string for the class device's name
597 * This function can be used by char device classes. A struct
598 * class_device will be created in sysfs, registered to the specified
599 * class.
600 * A "dev" file will be created, showing the dev_t for the device, if
601 * the dev_t is not 0,0.
602 * If a pointer to a parent struct class_device is passed in, the newly
603 * created struct class_device will be a child of that device in sysfs.
604 * The pointer to the struct class_device will be returned from the
605 * call. Any further sysfs files that might be required can be created
606 * using this pointer.
608 * Note: the struct class passed to this function must have previously
609 * been created with a call to class_create().
611 struct class_device *class_device_create(struct class *cls,
612 struct class_device *parent,
613 dev_t devt,
614 struct device *device, char *fmt, ...)
616 va_list args;
617 struct class_device *class_dev = NULL;
618 int retval = -ENODEV;
620 if (cls == NULL || IS_ERR(cls))
621 goto error;
623 class_dev = kzalloc(sizeof(*class_dev), GFP_KERNEL);
624 if (!class_dev) {
625 retval = -ENOMEM;
626 goto error;
629 class_dev->devt = devt;
630 class_dev->dev = device;
631 class_dev->class = cls;
632 class_dev->parent = parent;
633 class_dev->release = class_device_create_release;
634 class_dev->hotplug = class_device_create_hotplug;
636 va_start(args, fmt);
637 vsnprintf(class_dev->class_id, BUS_ID_SIZE, fmt, args);
638 va_end(args);
639 retval = class_device_register(class_dev);
640 if (retval)
641 goto error;
643 return class_dev;
645 error:
646 kfree(class_dev);
647 return ERR_PTR(retval);
650 void class_device_del(struct class_device *class_dev)
652 struct class *parent_class = class_dev->class;
653 struct class_device *parent_device = class_dev->parent;
654 struct class_interface *class_intf;
655 char *class_name = NULL;
657 if (parent_class) {
658 down(&parent_class->sem);
659 list_del_init(&class_dev->node);
660 list_for_each_entry(class_intf, &parent_class->interfaces, node)
661 if (class_intf->remove)
662 class_intf->remove(class_dev, class_intf);
663 up(&parent_class->sem);
666 if (class_dev->dev) {
667 class_name = make_class_name(class_dev);
668 sysfs_remove_link(&class_dev->kobj, "device");
669 sysfs_remove_link(&class_dev->dev->kobj, class_name);
671 class_device_remove_file(class_dev, &class_dev->uevent_attr);
672 if (class_dev->devt_attr)
673 class_device_remove_file(class_dev, class_dev->devt_attr);
674 class_device_remove_attrs(class_dev);
676 kobject_hotplug(&class_dev->kobj, KOBJ_REMOVE);
677 kobject_del(&class_dev->kobj);
679 class_device_put(parent_device);
680 class_put(parent_class);
681 kfree(class_name);
684 void class_device_unregister(struct class_device *class_dev)
686 pr_debug("CLASS: Unregistering class device. ID = '%s'\n",
687 class_dev->class_id);
688 class_device_del(class_dev);
689 class_device_put(class_dev);
693 * class_device_destroy - removes a class device that was created with class_device_create()
694 * @cls: the pointer to the struct class that this device was registered * with.
695 * @dev: the dev_t of the device that was previously registered.
697 * This call unregisters and cleans up a class device that was created with a
698 * call to class_device_create()
700 void class_device_destroy(struct class *cls, dev_t devt)
702 struct class_device *class_dev = NULL;
703 struct class_device *class_dev_tmp;
705 down(&cls->sem);
706 list_for_each_entry(class_dev_tmp, &cls->children, node) {
707 if (class_dev_tmp->devt == devt) {
708 class_dev = class_dev_tmp;
709 break;
712 up(&cls->sem);
714 if (class_dev)
715 class_device_unregister(class_dev);
718 int class_device_rename(struct class_device *class_dev, char *new_name)
720 int error = 0;
721 char *old_class_name = NULL, *new_class_name = NULL;
723 class_dev = class_device_get(class_dev);
724 if (!class_dev)
725 return -EINVAL;
727 pr_debug("CLASS: renaming '%s' to '%s'\n", class_dev->class_id,
728 new_name);
730 if (class_dev->dev)
731 old_class_name = make_class_name(class_dev);
733 strlcpy(class_dev->class_id, new_name, KOBJ_NAME_LEN);
735 error = kobject_rename(&class_dev->kobj, new_name);
737 if (class_dev->dev) {
738 new_class_name = make_class_name(class_dev);
739 sysfs_create_link(&class_dev->dev->kobj, &class_dev->kobj,
740 new_class_name);
741 sysfs_remove_link(&class_dev->dev->kobj, old_class_name);
743 class_device_put(class_dev);
745 kfree(old_class_name);
746 kfree(new_class_name);
748 return error;
751 struct class_device * class_device_get(struct class_device *class_dev)
753 if (class_dev)
754 return to_class_dev(kobject_get(&class_dev->kobj));
755 return NULL;
758 void class_device_put(struct class_device *class_dev)
760 if (class_dev)
761 kobject_put(&class_dev->kobj);
765 int class_interface_register(struct class_interface *class_intf)
767 struct class *parent;
768 struct class_device *class_dev;
770 if (!class_intf || !class_intf->class)
771 return -ENODEV;
773 parent = class_get(class_intf->class);
774 if (!parent)
775 return -EINVAL;
777 down(&parent->sem);
778 list_add_tail(&class_intf->node, &parent->interfaces);
779 if (class_intf->add) {
780 list_for_each_entry(class_dev, &parent->children, node)
781 class_intf->add(class_dev, class_intf);
783 up(&parent->sem);
785 return 0;
788 void class_interface_unregister(struct class_interface *class_intf)
790 struct class * parent = class_intf->class;
791 struct class_device *class_dev;
793 if (!parent)
794 return;
796 down(&parent->sem);
797 list_del_init(&class_intf->node);
798 if (class_intf->remove) {
799 list_for_each_entry(class_dev, &parent->children, node)
800 class_intf->remove(class_dev, class_intf);
802 up(&parent->sem);
804 class_put(parent);
809 int __init classes_init(void)
811 int retval;
813 retval = subsystem_register(&class_subsys);
814 if (retval)
815 return retval;
817 /* ick, this is ugly, the things we go through to keep from showing up
818 * in sysfs... */
819 subsystem_init(&class_obj_subsys);
820 if (!class_obj_subsys.kset.subsys)
821 class_obj_subsys.kset.subsys = &class_obj_subsys;
822 return 0;
825 EXPORT_SYMBOL_GPL(class_create_file);
826 EXPORT_SYMBOL_GPL(class_remove_file);
827 EXPORT_SYMBOL_GPL(class_register);
828 EXPORT_SYMBOL_GPL(class_unregister);
829 EXPORT_SYMBOL_GPL(class_get);
830 EXPORT_SYMBOL_GPL(class_put);
831 EXPORT_SYMBOL_GPL(class_create);
832 EXPORT_SYMBOL_GPL(class_destroy);
834 EXPORT_SYMBOL_GPL(class_device_register);
835 EXPORT_SYMBOL_GPL(class_device_unregister);
836 EXPORT_SYMBOL_GPL(class_device_initialize);
837 EXPORT_SYMBOL_GPL(class_device_add);
838 EXPORT_SYMBOL_GPL(class_device_del);
839 EXPORT_SYMBOL_GPL(class_device_get);
840 EXPORT_SYMBOL_GPL(class_device_put);
841 EXPORT_SYMBOL_GPL(class_device_create);
842 EXPORT_SYMBOL_GPL(class_device_destroy);
843 EXPORT_SYMBOL_GPL(class_device_create_file);
844 EXPORT_SYMBOL_GPL(class_device_remove_file);
845 EXPORT_SYMBOL_GPL(class_device_create_bin_file);
846 EXPORT_SYMBOL_GPL(class_device_remove_bin_file);
848 EXPORT_SYMBOL_GPL(class_interface_register);
849 EXPORT_SYMBOL_GPL(class_interface_unregister);