aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJavier Martinez Canillas <javier.martinez@collabora.co.uk>2013-04-17 16:34:12 -0400
committerJon Hunter <jon-hunter@ti.com>2013-04-30 09:43:05 -0400
commitb327b3627bb428eb7d98f25224532425a673d89e (patch)
treeaf1846072719995549c13619f16a4502759167ce
parentf2b09f67047aa5da60718f1a92e9b7f26b9266b4 (diff)
ARM: OMAP2+: only WARN if a GPMC child probe function fail
If any of the GPMC child nodes fails, this shouldn't make the whole gpmc_probe_dt() function to fail. It is better to just WARN and allow other devices probe function to succeed. Signed-off-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk> Signed-off-by: Jon Hunter <jon-hunter@ti.com>
-rw-r--r--arch/arm/mach-omap2/gpmc.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/arm/mach-omap2/gpmc.c b/arch/arm/mach-omap2/gpmc.c
index 6166847a3244..6c4da1254f53 100644
--- a/arch/arm/mach-omap2/gpmc.c
+++ b/arch/arm/mach-omap2/gpmc.c
@@ -1533,10 +1533,9 @@ static int gpmc_probe_dt(struct platform_device *pdev)
1533 of_node_cmp(child->name, "nor") == 0) 1533 of_node_cmp(child->name, "nor") == 0)
1534 ret = gpmc_probe_generic_child(pdev, child); 1534 ret = gpmc_probe_generic_child(pdev, child);
1535 1535
1536 if (ret < 0) { 1536 if (WARN(ret < 0, "%s: probing gpmc child %s failed\n",
1537 __func__, child->full_name))
1537 of_node_put(child); 1538 of_node_put(child);
1538 return ret;
1539 }
1540 } 1539 }
1541 1540
1542 return 0; 1541 return 0;