ACPI: Do not fail acpi_bind_one() if device is already bound correctly
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 6 Aug 2013 23:15:25 +0000 (01:15 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 7 Aug 2013 21:41:46 +0000 (23:41 +0200)
Modify acpi_bind_one() so that it doesn't fail if the device
represented by its first argument has already been bound to the
given ACPI handle (second argument), because that is not a good
enough reason for returning an error code.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: Lan Tianyu <tianyu.lan@intel.com>
Acked-by: Toshi Kani <toshi.kani@hp.com>
drivers/acpi/glue.c

index 408f6b2..48cc4c9 100644 (file)
@@ -217,7 +217,10 @@ int acpi_bind_one(struct device *dev, acpi_handle handle)
                /* Sanity check. */
                if (pn->dev == dev) {
                        dev_warn(dev, "Already associated with ACPI node\n");
-                       goto err_free;
+                       if (ACPI_HANDLE(dev) == handle)
+                               retval = 0;
+
+                       goto out_free;
                }
                if (pn->node_id == node_id) {
                        physnode_list = &pn->node;
@@ -255,10 +258,14 @@ int acpi_bind_one(struct device *dev, acpi_handle handle)
        put_device(dev);
        return retval;
 
err_free:
out_free:
        mutex_unlock(&acpi_dev->physical_node_lock);
        kfree(physical_node);
-       goto err;
+       if (retval)
+               goto err;
+
+       put_device(dev);
+       return 0;
 }
 EXPORT_SYMBOL_GPL(acpi_bind_one);