From: Sean Wang <sean.wang@xxxxxxxxxxxx> Add devm_of_platform_populate to populate all child nodes according to the dt-binding. Signed-off-by: Sean Wang <sean.wang@xxxxxxxxxxxx> --- drivers/rtc/rtc-mt6397.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/rtc/rtc-mt6397.c b/drivers/rtc/rtc-mt6397.c index bfc5d6f..d133d1f 100644 --- a/drivers/rtc/rtc-mt6397.c +++ b/drivers/rtc/rtc-mt6397.c @@ -16,6 +16,7 @@ #include <linux/init.h> #include <linux/interrupt.h> #include <linux/module.h> +#include <linux/of_platform.h> #include <linux/regmap.h> #include <linux/rtc.h> #include <linux/jiffies.h> @@ -349,7 +350,7 @@ static int mtk_rtc_probe(struct platform_device *pdev) return ret; } - return 0; + return devm_of_platform_populate(&pdev->dev); } #ifdef CONFIG_PM_SLEEP -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html