From: Kefeng Wang Date: Wed, 1 Jun 2016 06:53:09 +0000 (+0800) Subject: memory: omap-gpmc: use of_platform_default_populate() to populate default bus X-Git-Tag: v4.8-rc1~92^2~18 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=9f2c519c9f27d804b54422afd31a17335b32a556;p=linux.git 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 Cc: Roger Quadros Cc: Tony Lindgren Signed-off-by: Kefeng Wang Signed-off-by: Rob Herring --- 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 @@ static int gpmc_probe_generic_child(struct platform_device *pdev, /* 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;