diff options
Diffstat (limited to 'drivers/base')
-rw-r--r-- | drivers/base/class.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/drivers/base/class.c b/drivers/base/class.c index a863bb091e11..f6ebe6af3ef2 100644 --- a/drivers/base/class.c +++ b/drivers/base/class.c | |||
@@ -257,22 +257,6 @@ void class_device_remove_file(struct class_device * class_dev, | |||
257 | sysfs_remove_file(&class_dev->kobj, &attr->attr); | 257 | sysfs_remove_file(&class_dev->kobj, &attr->attr); |
258 | } | 258 | } |
259 | 259 | ||
260 | int class_device_create_bin_file(struct class_device *class_dev, | ||
261 | struct bin_attribute *attr) | ||
262 | { | ||
263 | int error = -EINVAL; | ||
264 | if (class_dev) | ||
265 | error = sysfs_create_bin_file(&class_dev->kobj, attr); | ||
266 | return error; | ||
267 | } | ||
268 | |||
269 | void class_device_remove_bin_file(struct class_device *class_dev, | ||
270 | struct bin_attribute *attr) | ||
271 | { | ||
272 | if (class_dev) | ||
273 | sysfs_remove_bin_file(&class_dev->kobj, attr); | ||
274 | } | ||
275 | |||
276 | static ssize_t | 260 | static ssize_t |
277 | class_device_attr_show(struct kobject * kobj, struct attribute * attr, | 261 | class_device_attr_show(struct kobject * kobj, struct attribute * attr, |
278 | char * buf) | 262 | char * buf) |
@@ -885,8 +869,6 @@ EXPORT_SYMBOL_GPL(class_device_create); | |||
885 | EXPORT_SYMBOL_GPL(class_device_destroy); | 869 | EXPORT_SYMBOL_GPL(class_device_destroy); |
886 | EXPORT_SYMBOL_GPL(class_device_create_file); | 870 | EXPORT_SYMBOL_GPL(class_device_create_file); |
887 | EXPORT_SYMBOL_GPL(class_device_remove_file); | 871 | EXPORT_SYMBOL_GPL(class_device_remove_file); |
888 | EXPORT_SYMBOL_GPL(class_device_create_bin_file); | ||
889 | EXPORT_SYMBOL_GPL(class_device_remove_bin_file); | ||
890 | 872 | ||
891 | EXPORT_SYMBOL_GPL(class_interface_register); | 873 | EXPORT_SYMBOL_GPL(class_interface_register); |
892 | EXPORT_SYMBOL_GPL(class_interface_unregister); | 874 | EXPORT_SYMBOL_GPL(class_interface_unregister); |