]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
mfd: lp87565: Convert to use devm_mfd_add_devices()
authorAxel Lin <axel.lin@ingics.com>
Sun, 30 Jul 2017 10:58:15 +0000 (18:58 +0800)
committerLee Jones <lee.jones@linaro.org>
Tue, 5 Sep 2017 07:46:01 +0000 (08:46 +0100)
This fixes missing mfd_remove_devices() call when unload the module.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Reviewed-by: Keerthy <j-keerthy@ti.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/lp87565.c

index 340ad0c63744a4ac4ee56a1841f132bed8e16fd8..32d2a07d435494c17416c08111ab52daf74cd158 100644 (file)
@@ -73,10 +73,9 @@ static int lp87565_probe(struct i2c_client *client,
 
        i2c_set_clientdata(client, lp87565);
 
-       ret = mfd_add_devices(lp87565->dev, PLATFORM_DEVID_AUTO, lp87565_cells,
-                             ARRAY_SIZE(lp87565_cells), NULL, 0, NULL);
-
-       return ret;
+       return devm_mfd_add_devices(lp87565->dev, PLATFORM_DEVID_AUTO,
+                                   lp87565_cells, ARRAY_SIZE(lp87565_cells),
+                                   NULL, 0, NULL);
 }
 
 static const struct i2c_device_id lp87565_id_table[] = {