diff options
| author | Stephen Boyd <[email protected]> | 2020-02-05 15:28:02 -0800 |
|---|---|---|
| committer | Stephen Boyd <[email protected]> | 2020-02-12 15:27:13 -0800 |
| commit | 2760878662a290ac57cff8a5a8d8bda8f4dddc37 (patch) | |
| tree | 8b50aeb5276a79f9872b9c620d814ede7612758b | |
| parent | 0daa376d832f4ce585f153efee4233b52fa3fe58 (diff) | |
clk: Bail out when calculating phase fails during clk registration
Bail out of clk registration if we fail to get the phase for a clk that
has a clk_ops::get_phase() callback. Print a warning too so that driver
authors can easily figure out that some clk is unable to read back phase
information at boot.
Cc: Douglas Anderson <[email protected]>
Cc: Heiko Stuebner <[email protected]>
Suggested-by: Jerome Brunet <[email protected]>
Signed-off-by: Stephen Boyd <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
Acked-by: Jerome Brunet <[email protected]>
| -rw-r--r-- | drivers/clk/clk.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index dc8bdfbd6a0c..ed1797857bae 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -3457,7 +3457,12 @@ static int __clk_core_init(struct clk_core *core) * Since a phase is by definition relative to its parent, just * query the current clock phase, or just assume it's in phase. */ - clk_core_get_phase(core); + ret = clk_core_get_phase(core); + if (ret < 0) { + pr_warn("%s: Failed to get phase for clk '%s'\n", __func__, + core->name); + goto out; + } /* * Set clk's duty cycle. |