Use devm_of_platform_populate() to be sure that of_platform_depopulate
is called when removing the driver.

Signed-off-by: Benjamin Gaignard <[email protected]>

CC: Lee Jones <[email protected]>
CC: [email protected]
---
 drivers/mfd/smsc-ece1099.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/mfd/smsc-ece1099.c b/drivers/mfd/smsc-ece1099.c
index 1f40baf..93a8297 100644
--- a/drivers/mfd/smsc-ece1099.c
+++ b/drivers/mfd/smsc-ece1099.c
@@ -69,8 +69,7 @@ static int smsc_i2c_probe(struct i2c_client *i2c,
 
 #ifdef CONFIG_OF
        if (i2c->dev.of_node)
-               ret = of_platform_populate(i2c->dev.of_node,
-                                          NULL, NULL, &i2c->dev);
+               ret = devm_of_platform_populate(&i2c->dev);
 #endif
 
        return ret;
-- 
1.9.1

Reply via email to