diff options
author | Tony Lindgren <tony@atomide.com> | 2018-09-29 01:21:50 +0300 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2018-09-29 01:27:33 +0300 |
commit | f949078302594b2f68aa8b4f94dae540d9b66d2c (patch) | |
tree | cbf64dec054019352a4559f620c78252ce05619d /drivers/bus/ti-sysc.c | |
parent | c6eb4af39fcfd8adbe3ed9d7ee39be17a4b9a611 (diff) | |
download | linux-f949078302594b2f68aa8b4f94dae540d9b66d2c.tar.xz |
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: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'drivers/bus/ti-sysc.c')
-rw-r--r-- | drivers/bus/ti-sysc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/bus/ti-sysc.c b/drivers/bus/ti-sysc.c index d8ddf36eb096..59df869109a3 100644 --- a/drivers/bus/ti-sysc.c +++ b/drivers/bus/ti-sysc.c @@ -1253,8 +1253,8 @@ 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", - __func__, __LINE__, error); + dev_dbg(dev, "%s busy at %i: %i\n", + __func__, __LINE__, error); return 0; } |