| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/device.h> | 
|  | 14 | #include <linux/module.h> | 
|  | 15 | #include <linux/init.h> | 
|  | 16 | #include <linux/string.h> | 
|  | 17 | #include <linux/kdev_t.h> | 
| gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 18 | #include <linux/err.h> | 
| Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 19 | #include <linux/slab.h> | 
| Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 20 | #include <linux/genhd.h> | 
| Dave Young | f75b1c6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 21 | #include <linux/mutex.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include "base.h" | 
|  | 23 |  | 
|  | 24 | #define to_class_attr(_attr) container_of(_attr, struct class_attribute, attr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 |  | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 26 | static ssize_t class_attr_show(struct kobject *kobj, struct attribute *attr, | 
|  | 27 | char *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | { | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 29 | struct class_attribute *class_attr = to_class_attr(attr); | 
| Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 30 | struct class_private *cp = to_class(kobj); | 
| Dmitry Torokhov | 4a0c20b | 2005-04-29 01:23:47 -0500 | [diff] [blame] | 31 | ssize_t ret = -EIO; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 |  | 
|  | 33 | if (class_attr->show) | 
| Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 34 | ret = class_attr->show(cp->class, buf); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | return ret; | 
|  | 36 | } | 
|  | 37 |  | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 38 | static ssize_t class_attr_store(struct kobject *kobj, struct attribute *attr, | 
|  | 39 | const char *buf, size_t count) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | { | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 41 | struct class_attribute *class_attr = to_class_attr(attr); | 
| Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 42 | struct class_private *cp = to_class(kobj); | 
| Dmitry Torokhov | 4a0c20b | 2005-04-29 01:23:47 -0500 | [diff] [blame] | 43 | ssize_t ret = -EIO; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 |  | 
|  | 45 | if (class_attr->store) | 
| Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 46 | ret = class_attr->store(cp->class, buf, count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | return ret; | 
|  | 48 | } | 
|  | 49 |  | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 50 | static void class_release(struct kobject *kobj) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | { | 
| Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 52 | struct class_private *cp = to_class(kobj); | 
|  | 53 | struct class *class = cp->class; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 |  | 
|  | 55 | pr_debug("class '%s': release.\n", class->name); | 
|  | 56 |  | 
|  | 57 | if (class->class_release) | 
|  | 58 | class->class_release(class); | 
|  | 59 | else | 
|  | 60 | pr_debug("class '%s' does not have a release() function, " | 
|  | 61 | "be careful\n", class->name); | 
|  | 62 | } | 
|  | 63 |  | 
|  | 64 | static struct sysfs_ops class_sysfs_ops = { | 
|  | 65 | .show	= class_attr_show, | 
|  | 66 | .store	= class_attr_store, | 
|  | 67 | }; | 
|  | 68 |  | 
| Greg Kroah-Hartman | adc5680 | 2007-10-11 10:47:49 -0600 | [diff] [blame] | 69 | static struct kobj_type class_ktype = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | .sysfs_ops	= &class_sysfs_ops, | 
|  | 71 | .release	= class_release, | 
|  | 72 | }; | 
|  | 73 |  | 
| Greg Kroah-Hartman | 1fbfee6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 74 | /* Hotplug events for classes go to the class class_subsys */ | 
| Greg Kroah-Hartman | 443dbf9 | 2007-10-29 23:22:26 -0500 | [diff] [blame] | 75 | static struct kset *class_kset; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 |  | 
|  | 77 |  | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 78 | int class_create_file(struct class *cls, const struct class_attribute *attr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | { | 
|  | 80 | int error; | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 81 | if (cls) | 
| Greg Kroah-Hartman | 1fbfee6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 82 | error = sysfs_create_file(&cls->p->class_subsys.kobj, | 
|  | 83 | &attr->attr); | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 84 | else | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | error = -EINVAL; | 
|  | 86 | return error; | 
|  | 87 | } | 
|  | 88 |  | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 89 | void class_remove_file(struct class *cls, const struct class_attribute *attr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | { | 
|  | 91 | if (cls) | 
| Greg Kroah-Hartman | 1fbfee6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 92 | sysfs_remove_file(&cls->p->class_subsys.kobj, &attr->attr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | } | 
|  | 94 |  | 
| Greg Kroah-Hartman | 1740757 | 2006-05-02 16:59:59 +0200 | [diff] [blame] | 95 | static struct class *class_get(struct class *cls) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | { | 
|  | 97 | if (cls) | 
| Greg Kroah-Hartman | 1fbfee6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 98 | kset_get(&cls->p->class_subsys); | 
| Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 99 | return cls; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | } | 
|  | 101 |  | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 102 | static void class_put(struct class *cls) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | { | 
| Greg Kroah-Hartman | 51d172d | 2005-10-27 22:25:43 -0700 | [diff] [blame] | 104 | if (cls) | 
| Greg Kroah-Hartman | 1fbfee6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 105 | kset_put(&cls->p->class_subsys); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | } | 
|  | 107 |  | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 108 | static int add_class_attrs(struct class *cls) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | { | 
|  | 110 | int i; | 
|  | 111 | int error = 0; | 
|  | 112 |  | 
|  | 113 | if (cls->class_attrs) { | 
|  | 114 | for (i = 0; attr_name(cls->class_attrs[i]); i++) { | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 115 | error = class_create_file(cls, &cls->class_attrs[i]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | if (error) | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 117 | goto error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | } | 
|  | 119 | } | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 120 | done: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | return error; | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 122 | error: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | while (--i >= 0) | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 124 | class_remove_file(cls, &cls->class_attrs[i]); | 
|  | 125 | goto done; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | } | 
|  | 127 |  | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 128 | static void remove_class_attrs(struct class *cls) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | { | 
|  | 130 | int i; | 
|  | 131 |  | 
|  | 132 | if (cls->class_attrs) { | 
|  | 133 | for (i = 0; attr_name(cls->class_attrs[i]); i++) | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 134 | class_remove_file(cls, &cls->class_attrs[i]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | } | 
|  | 136 | } | 
|  | 137 |  | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 138 | static void klist_class_dev_get(struct klist_node *n) | 
|  | 139 | { | 
|  | 140 | struct device *dev = container_of(n, struct device, knode_class); | 
|  | 141 |  | 
|  | 142 | get_device(dev); | 
|  | 143 | } | 
|  | 144 |  | 
|  | 145 | static void klist_class_dev_put(struct klist_node *n) | 
|  | 146 | { | 
|  | 147 | struct device *dev = container_of(n, struct device, knode_class); | 
|  | 148 |  | 
|  | 149 | put_device(dev); | 
|  | 150 | } | 
|  | 151 |  | 
| Matthew Wilcox | d2a3b91 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 152 | int __class_register(struct class *cls, struct lock_class_key *key) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | { | 
| Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 154 | struct class_private *cp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | int error; | 
|  | 156 |  | 
|  | 157 | pr_debug("device class '%s': registering\n", cls->name); | 
|  | 158 |  | 
| Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 159 | cp = kzalloc(sizeof(*cp), GFP_KERNEL); | 
|  | 160 | if (!cp) | 
|  | 161 | return -ENOMEM; | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 162 | klist_init(&cp->class_devices, klist_class_dev_get, klist_class_dev_put); | 
| Greg Kroah-Hartman | 184f1f7 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 163 | INIT_LIST_HEAD(&cp->class_interfaces); | 
| Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 164 | kset_init(&cp->class_dirs); | 
| Dave Young | f75b1c6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 165 | __mutex_init(&cp->class_mutex, "struct class mutex", key); | 
| Greg Kroah-Hartman | 1fbfee6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 166 | error = kobject_set_name(&cp->class_subsys.kobj, "%s", cls->name); | 
| Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 167 | if (error) { | 
|  | 168 | kfree(cp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | return error; | 
| Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 170 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 |  | 
| Dan Williams | e105b8b | 2008-04-21 10:51:07 -0700 | [diff] [blame] | 172 | /* set the default /sys/dev directory for devices of this class */ | 
|  | 173 | if (!cls->dev_kobj) | 
|  | 174 | cls->dev_kobj = sysfs_dev_char_kobj; | 
|  | 175 |  | 
| Greg Kroah-Hartman | 4e886c2 | 2008-01-27 12:12:43 -0800 | [diff] [blame] | 176 | #if defined(CONFIG_SYSFS_DEPRECATED) && defined(CONFIG_BLOCK) | 
| Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 177 | /* let the block class directory show up in the root of sysfs */ | 
|  | 178 | if (cls != &block_class) | 
| Greg Kroah-Hartman | 1fbfee6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 179 | cp->class_subsys.kobj.kset = class_kset; | 
| Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 180 | #else | 
| Greg Kroah-Hartman | 1fbfee6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 181 | cp->class_subsys.kobj.kset = class_kset; | 
| Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 182 | #endif | 
| Greg Kroah-Hartman | 1fbfee6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 183 | cp->class_subsys.kobj.ktype = &class_ktype; | 
| Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 184 | cp->class = cls; | 
|  | 185 | cls->p = cp; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 |  | 
| Greg Kroah-Hartman | 1fbfee6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 187 | error = kset_register(&cp->class_subsys); | 
| Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 188 | if (error) { | 
|  | 189 | kfree(cp); | 
|  | 190 | return error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | } | 
| Greg Kroah-Hartman | 7c71448 | 2008-01-22 18:17:41 -0500 | [diff] [blame] | 192 | error = add_class_attrs(class_get(cls)); | 
|  | 193 | class_put(cls); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | return error; | 
|  | 195 | } | 
| Matthew Wilcox | d2a3b91 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 196 | EXPORT_SYMBOL_GPL(__class_register); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 |  | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 198 | void class_unregister(struct class *cls) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | { | 
|  | 200 | pr_debug("device class '%s': unregistering\n", cls->name); | 
|  | 201 | remove_class_attrs(cls); | 
| Greg Kroah-Hartman | 1fbfee6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 202 | kset_unregister(&cls->p->class_subsys); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | } | 
|  | 204 |  | 
| gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 205 | static void class_create_release(struct class *cls) | 
|  | 206 | { | 
| Harvey Harrison | 2b3a302 | 2008-03-04 16:41:05 -0800 | [diff] [blame] | 207 | pr_debug("%s called for %s\n", __func__, cls->name); | 
| gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 208 | kfree(cls); | 
|  | 209 | } | 
|  | 210 |  | 
| gregkh@suse.de | 2fc6844 | 2005-03-23 10:02:56 -0800 | [diff] [blame] | 211 | /** | 
|  | 212 | * class_create - create a struct class structure | 
|  | 213 | * @owner: pointer to the module that is to "own" this struct class | 
|  | 214 | * @name: pointer to a string for the name of this class. | 
| Randy Dunlap | 0e241ff | 2008-07-24 16:58:42 -0700 | [diff] [blame] | 215 | * @key: the lock_class_key for this class; used by mutex lock debugging | 
| gregkh@suse.de | 2fc6844 | 2005-03-23 10:02:56 -0800 | [diff] [blame] | 216 | * | 
|  | 217 | * This is used to create a struct class pointer that can then be used | 
| Kay Sievers | c3b19ff | 2008-03-12 20:47:35 +0100 | [diff] [blame] | 218 | * in calls to device_create(). | 
| gregkh@suse.de | 2fc6844 | 2005-03-23 10:02:56 -0800 | [diff] [blame] | 219 | * | 
|  | 220 | * Note, the pointer created here is to be destroyed when finished by | 
|  | 221 | * making a call to class_destroy(). | 
|  | 222 | */ | 
| Matthew Wilcox | d2a3b91 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 223 | struct class *__class_create(struct module *owner, const char *name, | 
|  | 224 | struct lock_class_key *key) | 
| gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 225 | { | 
|  | 226 | struct class *cls; | 
|  | 227 | int retval; | 
|  | 228 |  | 
| Jiri Slaby | 4aed064 | 2005-09-13 01:25:01 -0700 | [diff] [blame] | 229 | cls = kzalloc(sizeof(*cls), GFP_KERNEL); | 
| gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 230 | if (!cls) { | 
|  | 231 | retval = -ENOMEM; | 
|  | 232 | goto error; | 
|  | 233 | } | 
| gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 234 |  | 
|  | 235 | cls->name = name; | 
|  | 236 | cls->owner = owner; | 
|  | 237 | cls->class_release = class_create_release; | 
| gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 238 |  | 
| Matthew Wilcox | d2a3b91 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 239 | retval = __class_register(cls, key); | 
| gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 240 | if (retval) | 
|  | 241 | goto error; | 
|  | 242 |  | 
|  | 243 | return cls; | 
|  | 244 |  | 
|  | 245 | error: | 
|  | 246 | kfree(cls); | 
|  | 247 | return ERR_PTR(retval); | 
|  | 248 | } | 
| Matthew Wilcox | d2a3b91 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 249 | EXPORT_SYMBOL_GPL(__class_create); | 
| gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 250 |  | 
| gregkh@suse.de | 2fc6844 | 2005-03-23 10:02:56 -0800 | [diff] [blame] | 251 | /** | 
|  | 252 | * class_destroy - destroys a struct class structure | 
| Rolf Eike Beer | 92a0f86 | 2006-09-29 01:59:13 -0700 | [diff] [blame] | 253 | * @cls: pointer to the struct class that is to be destroyed | 
| gregkh@suse.de | 2fc6844 | 2005-03-23 10:02:56 -0800 | [diff] [blame] | 254 | * | 
|  | 255 | * Note, the pointer to be destroyed must have been created with a call | 
|  | 256 | * to class_create(). | 
|  | 257 | */ | 
| gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 258 | void class_destroy(struct class *cls) | 
|  | 259 | { | 
|  | 260 | if ((cls == NULL) || (IS_ERR(cls))) | 
|  | 261 | return; | 
|  | 262 |  | 
|  | 263 | class_unregister(cls); | 
|  | 264 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 |  | 
| Kay Sievers | 805fab4 | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 266 | #ifdef CONFIG_SYSFS_DEPRECATED | 
|  | 267 | char *make_class_name(const char *name, struct kobject *kobj) | 
|  | 268 | { | 
|  | 269 | char *class_name; | 
|  | 270 | int size; | 
|  | 271 |  | 
|  | 272 | size = strlen(name) + strlen(kobject_name(kobj)) + 2; | 
|  | 273 |  | 
|  | 274 | class_name = kmalloc(size, GFP_KERNEL); | 
|  | 275 | if (!class_name) | 
| Cornelia Huck | cb360bb | 2006-11-27 10:35:05 +0100 | [diff] [blame] | 276 | return NULL; | 
| Kay Sievers | 805fab4 | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 277 |  | 
|  | 278 | strcpy(class_name, name); | 
|  | 279 | strcat(class_name, ":"); | 
|  | 280 | strcat(class_name, kobject_name(kobj)); | 
|  | 281 | return class_name; | 
|  | 282 | } | 
| Kay Sievers | 805fab4 | 2006-09-14 11:23:28 +0200 | [diff] [blame] | 283 | #endif | 
|  | 284 |  | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 285 | /** | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 286 | * class_dev_iter_init - initialize class device iterator | 
|  | 287 | * @iter: class iterator to initialize | 
|  | 288 | * @class: the class we wanna iterate over | 
|  | 289 | * @start: the device to start iterating from, if any | 
|  | 290 | * @type: device_type of the devices to iterate over, NULL for all | 
|  | 291 | * | 
|  | 292 | * Initialize class iterator @iter such that it iterates over devices | 
|  | 293 | * of @class.  If @start is set, the list iteration will start there, | 
|  | 294 | * otherwise if it is NULL, the iteration starts at the beginning of | 
|  | 295 | * the list. | 
|  | 296 | */ | 
|  | 297 | void class_dev_iter_init(struct class_dev_iter *iter, struct class *class, | 
|  | 298 | struct device *start, const struct device_type *type) | 
|  | 299 | { | 
|  | 300 | struct klist_node *start_knode = NULL; | 
|  | 301 |  | 
|  | 302 | if (start) | 
|  | 303 | start_knode = &start->knode_class; | 
|  | 304 | klist_iter_init_node(&class->p->class_devices, &iter->ki, start_knode); | 
|  | 305 | iter->type = type; | 
|  | 306 | } | 
|  | 307 | EXPORT_SYMBOL_GPL(class_dev_iter_init); | 
|  | 308 |  | 
|  | 309 | /** | 
|  | 310 | * class_dev_iter_next - iterate to the next device | 
|  | 311 | * @iter: class iterator to proceed | 
|  | 312 | * | 
|  | 313 | * Proceed @iter to the next device and return it.  Returns NULL if | 
|  | 314 | * iteration is complete. | 
|  | 315 | * | 
|  | 316 | * The returned device is referenced and won't be released till | 
|  | 317 | * iterator is proceed to the next device or exited.  The caller is | 
|  | 318 | * free to do whatever it wants to do with the device including | 
|  | 319 | * calling back into class code. | 
|  | 320 | */ | 
|  | 321 | struct device *class_dev_iter_next(struct class_dev_iter *iter) | 
|  | 322 | { | 
|  | 323 | struct klist_node *knode; | 
|  | 324 | struct device *dev; | 
|  | 325 |  | 
|  | 326 | while (1) { | 
|  | 327 | knode = klist_next(&iter->ki); | 
|  | 328 | if (!knode) | 
|  | 329 | return NULL; | 
|  | 330 | dev = container_of(knode, struct device, knode_class); | 
|  | 331 | if (!iter->type || iter->type == dev->type) | 
|  | 332 | return dev; | 
|  | 333 | } | 
|  | 334 | } | 
|  | 335 | EXPORT_SYMBOL_GPL(class_dev_iter_next); | 
|  | 336 |  | 
|  | 337 | /** | 
|  | 338 | * class_dev_iter_exit - finish iteration | 
|  | 339 | * @iter: class iterator to finish | 
|  | 340 | * | 
|  | 341 | * Finish an iteration.  Always call this function after iteration is | 
|  | 342 | * complete whether the iteration ran till the end or not. | 
|  | 343 | */ | 
|  | 344 | void class_dev_iter_exit(struct class_dev_iter *iter) | 
|  | 345 | { | 
|  | 346 | klist_iter_exit(&iter->ki); | 
|  | 347 | } | 
|  | 348 | EXPORT_SYMBOL_GPL(class_dev_iter_exit); | 
|  | 349 |  | 
|  | 350 | /** | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 351 | * class_for_each_device - device iterator | 
|  | 352 | * @class: the class we're iterating | 
| Greg Kroah-Hartman | 93562b5 | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 353 | * @start: the device to start with in the list, if any. | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 354 | * @data: data for the callback | 
|  | 355 | * @fn: function to be called for each device | 
|  | 356 | * | 
|  | 357 | * Iterate over @class's list of devices, and call @fn for each, | 
| Greg Kroah-Hartman | 93562b5 | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 358 | * passing it @data.  If @start is set, the list iteration will start | 
|  | 359 | * there, otherwise if it is NULL, the iteration starts at the | 
|  | 360 | * beginning of the list. | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 361 | * | 
|  | 362 | * We check the return of @fn each time. If it returns anything | 
|  | 363 | * other than 0, we break out and return that value. | 
|  | 364 | * | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 365 | * @fn is allowed to do anything including calling back into class | 
|  | 366 | * code.  There's no locking restriction. | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 367 | */ | 
| Greg Kroah-Hartman | 93562b5 | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 368 | int class_for_each_device(struct class *class, struct device *start, | 
|  | 369 | void *data, int (*fn)(struct device *, void *)) | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 370 | { | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 371 | struct class_dev_iter iter; | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 372 | struct device *dev; | 
|  | 373 | int error = 0; | 
|  | 374 |  | 
|  | 375 | if (!class) | 
|  | 376 | return -EINVAL; | 
| David Brownell | 7c22503 | 2008-08-06 18:52:44 -0700 | [diff] [blame] | 377 | if (!class->p) { | 
|  | 378 | WARN(1, "%s called for class '%s' before it was initialized", | 
|  | 379 | __func__, class->name); | 
|  | 380 | return -EINVAL; | 
|  | 381 | } | 
|  | 382 |  | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 383 | class_dev_iter_init(&iter, class, start, NULL); | 
|  | 384 | while ((dev = class_dev_iter_next(&iter))) { | 
| Greg Kroah-Hartman | 93562b5 | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 385 | error = fn(dev, data); | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 386 | if (error) | 
|  | 387 | break; | 
|  | 388 | } | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 389 | class_dev_iter_exit(&iter); | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 390 |  | 
|  | 391 | return error; | 
|  | 392 | } | 
|  | 393 | EXPORT_SYMBOL_GPL(class_for_each_device); | 
|  | 394 |  | 
|  | 395 | /** | 
|  | 396 | * class_find_device - device iterator for locating a particular device | 
|  | 397 | * @class: the class we're iterating | 
| Greg Kroah-Hartman | 695794a | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 398 | * @start: Device to begin with | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 399 | * @data: data for the match function | 
|  | 400 | * @match: function to check device | 
|  | 401 | * | 
|  | 402 | * This is similar to the class_for_each_dev() function above, but it | 
|  | 403 | * returns a reference to a device that is 'found' for later use, as | 
|  | 404 | * determined by the @match callback. | 
|  | 405 | * | 
|  | 406 | * The callback should return 0 if the device doesn't match and non-zero | 
|  | 407 | * if it does.  If the callback returns non-zero, this function will | 
|  | 408 | * return to the caller and not iterate over any more devices. | 
| Randy Dunlap | a63ca8f | 2008-01-30 11:51:08 -0800 | [diff] [blame] | 409 | * | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 410 | * Note, you will need to drop the reference with put_device() after use. | 
|  | 411 | * | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 412 | * @fn is allowed to do anything including calling back into class | 
|  | 413 | * code.  There's no locking restriction. | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 414 | */ | 
| Greg Kroah-Hartman | 695794a | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 415 | struct device *class_find_device(struct class *class, struct device *start, | 
|  | 416 | void *data, | 
|  | 417 | int (*match)(struct device *, void *)) | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 418 | { | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 419 | struct class_dev_iter iter; | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 420 | struct device *dev; | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 421 |  | 
|  | 422 | if (!class) | 
|  | 423 | return NULL; | 
| David Brownell | 7c22503 | 2008-08-06 18:52:44 -0700 | [diff] [blame] | 424 | if (!class->p) { | 
|  | 425 | WARN(1, "%s called for class '%s' before it was initialized", | 
|  | 426 | __func__, class->name); | 
|  | 427 | return NULL; | 
|  | 428 | } | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 429 |  | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 430 | class_dev_iter_init(&iter, class, start, NULL); | 
|  | 431 | while ((dev = class_dev_iter_next(&iter))) { | 
| Greg Kroah-Hartman | 695794a | 2008-05-22 17:21:08 -0400 | [diff] [blame] | 432 | if (match(dev, data)) { | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 433 | get_device(dev); | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 434 | break; | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 435 | } | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 436 | } | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 437 | class_dev_iter_exit(&iter); | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 438 |  | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 439 | return dev; | 
| Dave Young | fd04897 | 2008-01-22 15:27:08 +0800 | [diff] [blame] | 440 | } | 
|  | 441 | EXPORT_SYMBOL_GPL(class_find_device); | 
|  | 442 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | int class_interface_register(struct class_interface *class_intf) | 
|  | 444 | { | 
|  | 445 | struct class *parent; | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 446 | struct class_dev_iter iter; | 
| Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 447 | struct device *dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 |  | 
|  | 449 | if (!class_intf || !class_intf->class) | 
|  | 450 | return -ENODEV; | 
|  | 451 |  | 
|  | 452 | parent = class_get(class_intf->class); | 
|  | 453 | if (!parent) | 
|  | 454 | return -EINVAL; | 
|  | 455 |  | 
| Dave Young | f75b1c6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 456 | mutex_lock(&parent->p->class_mutex); | 
| Greg Kroah-Hartman | 184f1f7 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 457 | list_add_tail(&class_intf->node, &parent->p->class_interfaces); | 
| Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 458 | if (class_intf->add_dev) { | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 459 | class_dev_iter_init(&iter, parent, NULL, NULL); | 
|  | 460 | while ((dev = class_dev_iter_next(&iter))) | 
| Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 461 | class_intf->add_dev(dev, class_intf); | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 462 | class_dev_iter_exit(&iter); | 
| Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 463 | } | 
| Dave Young | f75b1c6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 464 | mutex_unlock(&parent->p->class_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 |  | 
|  | 466 | return 0; | 
|  | 467 | } | 
|  | 468 |  | 
|  | 469 | void class_interface_unregister(struct class_interface *class_intf) | 
|  | 470 | { | 
| Greg Kroah-Hartman | 4a3ad20 | 2008-01-24 22:50:12 -0800 | [diff] [blame] | 471 | struct class *parent = class_intf->class; | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 472 | struct class_dev_iter iter; | 
| Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 473 | struct device *dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 |  | 
|  | 475 | if (!parent) | 
|  | 476 | return; | 
|  | 477 |  | 
| Dave Young | f75b1c6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 478 | mutex_lock(&parent->p->class_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | list_del_init(&class_intf->node); | 
| Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 480 | if (class_intf->remove_dev) { | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 481 | class_dev_iter_init(&iter, parent, NULL, NULL); | 
|  | 482 | while ((dev = class_dev_iter_next(&iter))) | 
| Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 483 | class_intf->remove_dev(dev, class_intf); | 
| Tejun Heo | 5a3ceb8 | 2008-08-25 19:50:19 +0200 | [diff] [blame] | 484 | class_dev_iter_exit(&iter); | 
| Greg Kroah-Hartman | c47ed21 | 2006-09-13 15:34:05 +0200 | [diff] [blame] | 485 | } | 
| Dave Young | f75b1c6 | 2008-05-28 09:28:39 -0700 | [diff] [blame] | 486 | mutex_unlock(&parent->p->class_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 |  | 
|  | 488 | class_put(parent); | 
|  | 489 | } | 
|  | 490 |  | 
| Jean Delvare | 4622709 | 2009-08-04 12:55:34 +0200 | [diff] [blame] | 491 | struct class_compat { | 
|  | 492 | struct kobject *kobj; | 
|  | 493 | }; | 
|  | 494 |  | 
|  | 495 | /** | 
|  | 496 | * class_compat_register - register a compatibility class | 
|  | 497 | * @name: the name of the class | 
|  | 498 | * | 
|  | 499 | * Compatibility class are meant as a temporary user-space compatibility | 
|  | 500 | * workaround when converting a family of class devices to a bus devices. | 
|  | 501 | */ | 
|  | 502 | struct class_compat *class_compat_register(const char *name) | 
|  | 503 | { | 
|  | 504 | struct class_compat *cls; | 
|  | 505 |  | 
|  | 506 | cls = kmalloc(sizeof(struct class_compat), GFP_KERNEL); | 
|  | 507 | if (!cls) | 
|  | 508 | return NULL; | 
|  | 509 | cls->kobj = kobject_create_and_add(name, &class_kset->kobj); | 
|  | 510 | if (!cls->kobj) { | 
|  | 511 | kfree(cls); | 
|  | 512 | return NULL; | 
|  | 513 | } | 
|  | 514 | return cls; | 
|  | 515 | } | 
|  | 516 | EXPORT_SYMBOL_GPL(class_compat_register); | 
|  | 517 |  | 
|  | 518 | /** | 
|  | 519 | * class_compat_unregister - unregister a compatibility class | 
|  | 520 | * @cls: the class to unregister | 
|  | 521 | */ | 
|  | 522 | void class_compat_unregister(struct class_compat *cls) | 
|  | 523 | { | 
|  | 524 | kobject_put(cls->kobj); | 
|  | 525 | kfree(cls); | 
|  | 526 | } | 
|  | 527 | EXPORT_SYMBOL_GPL(class_compat_unregister); | 
|  | 528 |  | 
|  | 529 | /** | 
|  | 530 | * class_compat_create_link - create a compatibility class device link to | 
|  | 531 | *			      a bus device | 
|  | 532 | * @cls: the compatibility class | 
|  | 533 | * @dev: the target bus device | 
|  | 534 | * @device_link: an optional device to which a "device" link should be created | 
|  | 535 | */ | 
|  | 536 | int class_compat_create_link(struct class_compat *cls, struct device *dev, | 
|  | 537 | struct device *device_link) | 
|  | 538 | { | 
|  | 539 | int error; | 
|  | 540 |  | 
|  | 541 | error = sysfs_create_link(cls->kobj, &dev->kobj, dev_name(dev)); | 
|  | 542 | if (error) | 
|  | 543 | return error; | 
|  | 544 |  | 
|  | 545 | /* | 
|  | 546 | * Optionally add a "device" link (typically to the parent), as a | 
|  | 547 | * class device would have one and we want to provide as much | 
|  | 548 | * backwards compatibility as possible. | 
|  | 549 | */ | 
|  | 550 | if (device_link) { | 
|  | 551 | error = sysfs_create_link(&dev->kobj, &device_link->kobj, | 
|  | 552 | "device"); | 
|  | 553 | if (error) | 
|  | 554 | sysfs_remove_link(cls->kobj, dev_name(dev)); | 
|  | 555 | } | 
|  | 556 |  | 
|  | 557 | return error; | 
|  | 558 | } | 
|  | 559 | EXPORT_SYMBOL_GPL(class_compat_create_link); | 
|  | 560 |  | 
|  | 561 | /** | 
|  | 562 | * class_compat_remove_link - remove a compatibility class device link to | 
|  | 563 | *			      a bus device | 
|  | 564 | * @cls: the compatibility class | 
|  | 565 | * @dev: the target bus device | 
|  | 566 | * @device_link: an optional device to which a "device" link was previously | 
|  | 567 | * 		 created | 
|  | 568 | */ | 
|  | 569 | void class_compat_remove_link(struct class_compat *cls, struct device *dev, | 
|  | 570 | struct device *device_link) | 
|  | 571 | { | 
|  | 572 | if (device_link) | 
|  | 573 | sysfs_remove_link(&dev->kobj, "device"); | 
|  | 574 | sysfs_remove_link(cls->kobj, dev_name(dev)); | 
|  | 575 | } | 
|  | 576 | EXPORT_SYMBOL_GPL(class_compat_remove_link); | 
|  | 577 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | int __init classes_init(void) | 
|  | 579 | { | 
| Greg Kroah-Hartman | 443dbf9 | 2007-10-29 23:22:26 -0500 | [diff] [blame] | 580 | class_kset = kset_create_and_add("class", NULL, NULL); | 
|  | 581 | if (!class_kset) | 
|  | 582 | return -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | return 0; | 
|  | 584 | } | 
|  | 585 |  | 
|  | 586 | EXPORT_SYMBOL_GPL(class_create_file); | 
|  | 587 | EXPORT_SYMBOL_GPL(class_remove_file); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | EXPORT_SYMBOL_GPL(class_unregister); | 
| gregkh@suse.de | e9ba636 | 2005-03-15 11:54:21 -0800 | [diff] [blame] | 589 | EXPORT_SYMBOL_GPL(class_destroy); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | EXPORT_SYMBOL_GPL(class_interface_register); | 
|  | 592 | EXPORT_SYMBOL_GPL(class_interface_unregister); |