summaryrefslogtreecommitdiffstats
path: root/drivers/memory/omap-gpmc.c
diff options
context:
space:
mode:
authorKefeng Wang2016-06-01 08:53:09 +0200
committerRob Herring2016-06-23 22:00:55 +0200
commit9f2c519c9f27d804b54422afd31a17335b32a556 (patch)
tree65d003937a9ab39be741a3cce08a22e146f608fc /drivers/memory/omap-gpmc.c
parentbus: uniphier-system-bus: use of_platform_default_populate() to populate defa... (diff)
downloadkernel-qcow2-linux-9f2c519c9f27d804b54422afd31a17335b32a556.tar.gz
kernel-qcow2-linux-9f2c519c9f27d804b54422afd31a17335b32a556.tar.xz
kernel-qcow2-linux-9f2c519c9f27d804b54422afd31a17335b32a556.zip
memory: omap-gpmc: 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: Roger Quadros <rogerq@ti.com> Cc: Roger Quadros <rogerq@ti.com> Cc: Tony Lindgren <tony@atomide.com> Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com> Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'drivers/memory/omap-gpmc.c')
-rw-r--r--drivers/memory/omap-gpmc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/memory/omap-gpmc.c b/drivers/memory/omap-gpmc.c
index af4884ba6b7c..4b1913a878ec 100644
--- a/drivers/memory/omap-gpmc.c
+++ b/drivers/memory/omap-gpmc.c
@@ -2134,8 +2134,7 @@ no_timings:
/* is child a common bus? */
if (of_match_node(of_default_bus_match_table, child))
/* create children and other common bus children */
- if (of_platform_populate(child, of_default_bus_match_table,
- NULL, &pdev->dev))
+ if (of_platform_default_populate(child, NULL, &pdev->dev))
goto err_child_fail;
return 0;