opp: remove WARN when no valid OPPs remain
[ Upstream commit 335ffab3ef864539e814b9a2903b0ae420c1c067 ] This WARN can be triggered per-core and the stack trace is not useful. Replace it with plain dev_err(). Fix a comment while at it. Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
be37f7dbcd
commit
3dea931590
@@ -870,8 +870,9 @@ static int _of_add_opp_table_v2(struct device *dev, struct opp_table *opp_table)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* There should be one of more OPP defined */
|
/* There should be one or more OPPs defined */
|
||||||
if (WARN_ON(!count)) {
|
if (!count) {
|
||||||
|
dev_err(dev, "%s: no supported OPPs", __func__);
|
||||||
ret = -ENOENT;
|
ret = -ENOENT;
|
||||||
goto remove_static_opp;
|
goto remove_static_opp;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user