]> git.karo-electronics.de Git - linux-beck.git/commitdiff
mfd: smsc-ece1099: Remove unnecessarily remove callback
authorLaxman Dewangan <ldewangan@nvidia.com>
Thu, 21 Apr 2016 12:15:39 +0000 (17:45 +0530)
committerLee Jones <lee.jones@linaro.org>
Mon, 9 May 2016 07:24:01 +0000 (08:24 +0100)
SMSC MFD driver does not add any MFD child devices via
mfd_add_devices() and hence it is not required to call
mfd_remove_devices() to remove MFD child devices.

Remove the call of the API mfd_remove_devices() which will
result as remove of .remove callback for driver.

Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
Signed-off-by: Sourav Poddar <sourav.poddar@ti.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/smsc-ece1099.c

index a4c0df71c8b30a40b1dd97877ab1a2cd8d536cc0..7f89e89b8a5ee1f2b03e8e7e0fc528b731bea53a 100644 (file)
@@ -80,15 +80,6 @@ err:
        return ret;
 }
 
-static int smsc_i2c_remove(struct i2c_client *i2c)
-{
-       struct smsc *smsc = i2c_get_clientdata(i2c);
-
-       mfd_remove_devices(smsc->dev);
-
-       return 0;
-}
-
 static const struct i2c_device_id smsc_i2c_id[] = {
        { "smscece1099", 0},
        {},
@@ -100,7 +91,6 @@ static struct i2c_driver smsc_i2c_driver = {
                   .name = "smsc",
        },
        .probe = smsc_i2c_probe,
-       .remove = smsc_i2c_remove,
        .id_table = smsc_i2c_id,
 };