Message ID | 20170921164940.20343-3-georgi.djakov@linaro.org |
---|---|
State | New |
Headers | show |
Series | None | expand |
diff --git a/drivers/mailbox/qcom-apcs-ipc-mailbox.c b/drivers/mailbox/qcom-apcs-ipc-mailbox.c index ab344bc6fa63..fd9055eacf42 100644 --- a/drivers/mailbox/qcom-apcs-ipc-mailbox.c +++ b/drivers/mailbox/qcom-apcs-ipc-mailbox.c @@ -98,6 +98,10 @@ static int qcom_apcs_ipc_probe(struct platform_device *pdev) platform_set_drvdata(pdev, apcs); + ret = of_platform_populate(np, NULL, NULL, &pdev->dev); + if (ret) + dev_err(&pdev->dev, "failed to populate children\n"); + return 0; } @@ -106,6 +110,7 @@ static int qcom_apcs_ipc_remove(struct platform_device *pdev) struct qcom_apcs_ipc *apcs = platform_get_drvdata(pdev); mbox_controller_unregister(&apcs->mbox); + of_platform_depopulate(&pdev->dev); return 0; }
Register the child platform devices to probe their drivers. Signed-off-by: Georgi Djakov <georgi.djakov@linaro.org> --- drivers/mailbox/qcom-apcs-ipc-mailbox.c | 5 +++++ 1 file changed, 5 insertions(+) -- To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html