clocksource/drivers: Do not warn on probe defer
Deferred probe is an expected return value on many platforms and so there's no need to output a warning that may potentially confuse users. Signed-off-by: Jon Hunter <jonathanh@nvidia.com> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
This commit is contained in:
parent
763719771e
commit
14e019df1e
|
@ -29,7 +29,9 @@ void __init timer_probe(void)
|
|||
|
||||
ret = init_func_ret(np);
|
||||
if (ret) {
|
||||
pr_err("Failed to initialize '%pOF': %d\n", np, ret);
|
||||
if (ret != -EPROBE_DEFER)
|
||||
pr_err("Failed to initialize '%pOF': %d\n", np,
|
||||
ret);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue