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 | |
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')
-rw-r--r-- | drivers/base/class.c | 18 | ||||
-rw-r--r-- | drivers/base/core.c | 6 |
2 files changed, 3 insertions, 21 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); |
diff --git a/drivers/base/core.c b/drivers/base/core.c index c1343414d285..3f4d6aa13990 100644 --- a/drivers/base/core.c +++ b/drivers/base/core.c | |||
@@ -1228,18 +1228,18 @@ int device_rename(struct device *dev, char *new_name) | |||
1228 | sysfs_remove_link(&dev->parent->kobj, old_class_name); | 1228 | sysfs_remove_link(&dev->parent->kobj, old_class_name); |
1229 | } | 1229 | } |
1230 | } | 1230 | } |
1231 | #endif | 1231 | #else |
1232 | |||
1233 | if (dev->class) { | 1232 | if (dev->class) { |
1234 | sysfs_remove_link(&dev->class->subsys.kobj, old_device_name); | 1233 | sysfs_remove_link(&dev->class->subsys.kobj, old_device_name); |
1235 | error = sysfs_create_link(&dev->class->subsys.kobj, &dev->kobj, | 1234 | error = sysfs_create_link(&dev->class->subsys.kobj, &dev->kobj, |
1236 | dev->bus_id); | 1235 | dev->bus_id); |
1237 | if (error) { | 1236 | if (error) { |
1238 | /* Uh... how to unravel this if restoring can fail? */ | ||
1239 | dev_err(dev, "%s: sysfs_create_symlink failed (%d)\n", | 1237 | dev_err(dev, "%s: sysfs_create_symlink failed (%d)\n", |
1240 | __FUNCTION__, error); | 1238 | __FUNCTION__, error); |
1241 | } | 1239 | } |
1242 | } | 1240 | } |
1241 | #endif | ||
1242 | |||
1243 | out: | 1243 | out: |
1244 | put_device(dev); | 1244 | put_device(dev); |
1245 | 1245 | ||