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

Commit f9490783 authored by Tony Lindgren's avatar Tony Lindgren
Browse files

bus: ti-sysc: Make some warnings debug only



We're currently warning about busy children on suspend in
sysc_child_suspend_noirq() but the legacy code omap_device does
not do that. Let's just make it dev_dbg() instead of dev_warn().

Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent c6eb4af3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1253,7 +1253,7 @@ static int sysc_child_suspend_noirq(struct device *dev)
	if (!pm_runtime_status_suspended(dev)) {
		error = pm_generic_runtime_suspend(dev);
		if (error) {
			dev_warn(dev, "%s busy at %i: %i\n",
			dev_dbg(dev, "%s busy at %i: %i\n",
				__func__, __LINE__, error);

			return 0;