diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-31 01:23:27 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-31 01:23:27 -0400 |
commit | a3634d7169f56eca5e349fce2f1de228fc10efda (patch) | |
tree | f15da7d958c111cab9e36ede4a7044f52a88f6ff /drivers/base/class.c | |
parent | 53173920dab204a31ef37e7d2cb25b964a8a7752 (diff) | |
parent | 710701c8fc4f6e0c67a98a0b9ca0d75656115957 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-2.6:
add SubmittingPatches to Documentation/ja_JP
fix typo in SubmittingPatches
Driver Core: fix bug in device_rename() for SYSFS_DEPRECATED=y
sysfs: make sysfs_{get,put}_active() static
kobject: check for duplicate names in kobject_rename
Driver core: remove class_device_*_bin_file
Diffstat (limited to 'drivers/base/class.c')
-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); |