diff options
| author | Len Brown <len.brown@intel.com> | 2005-08-23 22:12:23 -0400 |
|---|---|---|
| committer | Len Brown <len.brown@intel.com> | 2005-08-23 22:12:23 -0400 |
| commit | 84ffa747520edd4556b136bdfc9df9eb1673ce12 (patch) | |
| tree | 1cfe20bd31fce1b5b3024384fcb324c3338d1d32 /drivers/base | |
| parent | 702c7e7626deeabb057b6f529167b65ec2eefbdb (diff) | |
| parent | 81065e2f415af6c028eac13f481fb9e60a0b487b (diff) | |
Merge from-linus to-akpm
Diffstat (limited to 'drivers/base')
| -rw-r--r-- | drivers/base/bus.c | 4 | ||||
| -rw-r--r-- | drivers/base/class.c | 10 |
2 files changed, 9 insertions, 5 deletions
diff --git a/drivers/base/bus.c b/drivers/base/bus.c index 96fe2f956754..ab53832d57e5 100644 --- a/drivers/base/bus.c +++ b/drivers/base/bus.c | |||
| @@ -180,7 +180,9 @@ static ssize_t driver_bind(struct device_driver *drv, | |||
| 180 | up(&dev->sem); | 180 | up(&dev->sem); |
| 181 | put_device(dev); | 181 | put_device(dev); |
| 182 | } | 182 | } |
| 183 | return err; | 183 | if (err) |
| 184 | return err; | ||
| 185 | return count; | ||
| 184 | } | 186 | } |
| 185 | static DRIVER_ATTR(bind, S_IWUSR, NULL, driver_bind); | 187 | static DRIVER_ATTR(bind, S_IWUSR, NULL, driver_bind); |
| 186 | 188 | ||
diff --git a/drivers/base/class.c b/drivers/base/class.c index 479c12570881..0154a1623b21 100644 --- a/drivers/base/class.c +++ b/drivers/base/class.c | |||
| @@ -299,6 +299,11 @@ static void class_dev_release(struct kobject * kobj) | |||
| 299 | 299 | ||
| 300 | pr_debug("device class '%s': release.\n", cd->class_id); | 300 | pr_debug("device class '%s': release.\n", cd->class_id); |
| 301 | 301 | ||
| 302 | if (cd->devt_attr) { | ||
| 303 | kfree(cd->devt_attr); | ||
| 304 | cd->devt_attr = NULL; | ||
| 305 | } | ||
| 306 | |||
| 302 | if (cls->release) | 307 | if (cls->release) |
| 303 | cls->release(cd); | 308 | cls->release(cd); |
| 304 | else { | 309 | else { |
| @@ -591,11 +596,8 @@ void class_device_del(struct class_device *class_dev) | |||
| 591 | 596 | ||
| 592 | if (class_dev->dev) | 597 | if (class_dev->dev) |
| 593 | sysfs_remove_link(&class_dev->kobj, "device"); | 598 | sysfs_remove_link(&class_dev->kobj, "device"); |
| 594 | if (class_dev->devt_attr) { | 599 | if (class_dev->devt_attr) |
| 595 | class_device_remove_file(class_dev, class_dev->devt_attr); | 600 | class_device_remove_file(class_dev, class_dev->devt_attr); |
| 596 | kfree(class_dev->devt_attr); | ||
| 597 | class_dev->devt_attr = NULL; | ||
| 598 | } | ||
| 599 | class_device_remove_attrs(class_dev); | 601 | class_device_remove_attrs(class_dev); |
| 600 | 602 | ||
| 601 | kobject_hotplug(&class_dev->kobj, KOBJ_REMOVE); | 603 | kobject_hotplug(&class_dev->kobj, KOBJ_REMOVE); |
