diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2007-10-31 15:51:29 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-10-31 15:51:29 -0400 |
commit | d919fd433b5823d1cf9d0688eb2eec183de9b74c (patch) | |
tree | 037cac29c344e0a2009a241d2168825f399b600a /drivers/base | |
parent | 5307cc1aa53850f017c8053db034cf950b670ac9 (diff) |
Revert "Driver core: remove class_device_*_bin_file"
This reverts commit fcd239d3d5575e5cc63aab5c33cf6dc66904f6d6.
I messed up, ia64 still uses these files in the current tree, and now
can not build the pci code, which all ia64 boxes seem to require :)
This fixes that mistake.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/base')
-rw-r--r-- | drivers/base/class.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/base/class.c b/drivers/base/class.c index f6ebe6af3ef2..a863bb091e11 100644 --- a/drivers/base/class.c +++ b/drivers/base/class.c | |||
@@ -257,6 +257,22 @@ 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 | |||
260 | static ssize_t | 276 | static ssize_t |
261 | class_device_attr_show(struct kobject * kobj, struct attribute * attr, | 277 | class_device_attr_show(struct kobject * kobj, struct attribute * attr, |
262 | char * buf) | 278 | char * buf) |
@@ -869,6 +885,8 @@ EXPORT_SYMBOL_GPL(class_device_create); | |||
869 | EXPORT_SYMBOL_GPL(class_device_destroy); | 885 | EXPORT_SYMBOL_GPL(class_device_destroy); |
870 | EXPORT_SYMBOL_GPL(class_device_create_file); | 886 | EXPORT_SYMBOL_GPL(class_device_create_file); |
871 | EXPORT_SYMBOL_GPL(class_device_remove_file); | 887 | 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); | ||
872 | 890 | ||
873 | EXPORT_SYMBOL_GPL(class_interface_register); | 891 | EXPORT_SYMBOL_GPL(class_interface_register); |
874 | EXPORT_SYMBOL_GPL(class_interface_unregister); | 892 | EXPORT_SYMBOL_GPL(class_interface_unregister); |