Stop holding the core_lists mutex when we don't actually need it.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
{
struct list_head *item;
struct i2c_adapter *adapter;
- int res = 0;
-
- mutex_lock(&core_lists);
+ int res;
/* add the driver to the list of i2c drivers in the driver core */
driver->driver.owner = owner;
res = driver_register(&driver->driver);
if (res)
- goto out_unlock;
+ return res;
+ mutex_lock(&core_lists);
+
list_add_tail(&driver->list,&drivers);
pr_debug("i2c-core: driver [%s] registered\n", driver->driver.name);
}
}
- out_unlock:
mutex_unlock(&core_lists);
- return res;
+ return 0;
}
EXPORT_SYMBOL(i2c_register_driver);