Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b327b362 authored by Javier Martinez Canillas's avatar Javier Martinez Canillas Committed by Jon Hunter
Browse files

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: default avatarJavier Martinez Canillas <javier.martinez@collabora.co.uk>
Signed-off-by: default avatarJon Hunter <jon-hunter@ti.com>
parent f2b09f67
Loading
Loading
Loading
Loading
+2 −3
Original line number Original line Diff line number Diff line
@@ -1533,10 +1533,9 @@ static int gpmc_probe_dt(struct platform_device *pdev)
			 of_node_cmp(child->name, "nor") == 0)
			 of_node_cmp(child->name, "nor") == 0)
			ret = gpmc_probe_generic_child(pdev, child);
			ret = gpmc_probe_generic_child(pdev, child);


		if (ret < 0) {
		if (WARN(ret < 0, "%s: probing gpmc child %s failed\n",
			 __func__, child->full_name))
			of_node_put(child);
			of_node_put(child);
			return ret;
		}
	}
	}


	return 0;
	return 0;