aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKefeng Wang <wangkefeng.wang@huawei.com>2016-06-01 02:53:07 -0400
committerRob Herring <robh@kernel.org>2016-06-23 16:00:45 -0400
commit39ec8d3809fdf5228f9cb9fa3d3f2bfb4ee57956 (patch)
treeb9d9cb9308b550eb1aa76c9c708778e65368e93d
parent1a1d2f9968660e016883b21c499158c08d9c87bf (diff)
bus: imx-weim: use of_platform_default_populate() to populate default bus
Use helper of_platform_default_populate() in linux/of_platform when possible, instead of calling of_platform_populate() with the default match table. Acked-by: Shawn Guo <shawn.guo@linaro.org> Cc: Signed-off-by: Huang Shijie <b32955@freescale.com> Cc: Shawn Guo <shawn.guo@linaro.org> Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com> Signed-off-by: Rob Herring <robh@kernel.org>
-rw-r--r--drivers/bus/imx-weim.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/bus/imx-weim.c b/drivers/bus/imx-weim.c
index 1827fc4d15c1..4bd361d64270 100644
--- a/drivers/bus/imx-weim.c
+++ b/drivers/bus/imx-weim.c
@@ -163,9 +163,8 @@ static int __init weim_parse_dt(struct platform_device *pdev,
163 } 163 }
164 164
165 if (have_child) 165 if (have_child)
166 ret = of_platform_populate(pdev->dev.of_node, 166 ret = of_platform_default_populate(pdev->dev.of_node,
167 of_default_bus_match_table, 167 NULL, &pdev->dev);
168 NULL, &pdev->dev);
169 if (ret) 168 if (ret)
170 dev_err(&pdev->dev, "%s fail to create devices.\n", 169 dev_err(&pdev->dev, "%s fail to create devices.\n",
171 pdev->dev.of_node->full_name); 170 pdev->dev.of_node->full_name);