aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base/bus.c
diff options
context:
space:
mode:
authorCornelia Huck <cornelia.huck@de.ibm.com>2007-02-05 19:15:26 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2007-04-27 13:57:29 -0400
commitc6a46696f97ff260a4ecce5e287f8de4b9d7fe14 (patch)
tree335de50c9868cd575f535677e430677d33cbaaa1 /drivers/base/bus.c
parenteed40d3ad2ba652c08422d62a5ff6f62ac0be16d (diff)
driver core: don't fail attaching the device if it cannot be bound
Don't fail bus_attach_device() if the device cannot be bound. If dev->driver has been specified, reset it to NULL if device_bind_driver() failed and add the device as an unbound device. As a result, bus_attach_device() now cannot fail, and we can remove some checking from device_add(). Also remove an unneeded check in bus_rescan_devices_helper(). Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/base/bus.c')
-rw-r--r--drivers/base/bus.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/drivers/base/bus.c b/drivers/base/bus.c
index 9df2e6dff519..20b6dc8706fa 100644
--- a/drivers/base/bus.c
+++ b/drivers/base/bus.c
@@ -447,7 +447,7 @@ out_put:
447 * - Add device to bus's list of devices. 447 * - Add device to bus's list of devices.
448 * - Try to attach to driver. 448 * - Try to attach to driver.
449 */ 449 */
450int bus_attach_device(struct device * dev) 450void bus_attach_device(struct device * dev)
451{ 451{
452 struct bus_type *bus = dev->bus; 452 struct bus_type *bus = dev->bus;
453 int ret = 0; 453 int ret = 0;
@@ -456,13 +456,12 @@ int bus_attach_device(struct device * dev)
456 dev->is_registered = 1; 456 dev->is_registered = 1;
457 if (bus->drivers_autoprobe) 457 if (bus->drivers_autoprobe)
458 ret = device_attach(dev); 458 ret = device_attach(dev);
459 if (ret >= 0) { 459 WARN_ON(ret < 0);
460 if (ret >= 0)
460 klist_add_tail(&dev->knode_bus, &bus->klist_devices); 461 klist_add_tail(&dev->knode_bus, &bus->klist_devices);
461 ret = 0; 462 else
462 } else
463 dev->is_registered = 0; 463 dev->is_registered = 0;
464 } 464 }
465 return ret;
466} 465}
467 466
468/** 467/**
@@ -669,8 +668,6 @@ static int __must_check bus_rescan_devices_helper(struct device *dev,
669 ret = device_attach(dev); 668 ret = device_attach(dev);
670 if (dev->parent) 669 if (dev->parent)
671 up(&dev->parent->sem); 670 up(&dev->parent->sem);
672 if (ret > 0)
673 ret = 0;
674 } 671 }
675 return ret < 0 ? ret : 0; 672 return ret < 0 ? ret : 0;
676} 673}