diff options
author | Paul Cercueil <[email protected]> | 2020-02-13 13:19:52 -0300 |
---|---|---|
committer | Stephen Boyd <[email protected]> | 2020-03-20 17:08:40 -0700 |
commit | edcc42945dee85e9dec3737f3dbf59d917ae5418 (patch) | |
tree | 062435904793588663dbc8318ade126b5858ee23 | |
parent | c067b46d731a764fc46ecc466c2967088c97089e (diff) |
clk: ingenic/TCU: Fix round_rate returning error
When requesting a rate superior to the parent's rate, it would return
-EINVAL instead of simply returning the parent's rate like it should.
Fixes: 4f89e4b8f121 ("clk: ingenic: Add driver for the TCU clocks")
Cc: [email protected]
Signed-off-by: Paul Cercueil <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Stephen Boyd <[email protected]>
-rw-r--r-- | drivers/clk/ingenic/tcu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/ingenic/tcu.c b/drivers/clk/ingenic/tcu.c index 879990762f57..153a954b0d2f 100644 --- a/drivers/clk/ingenic/tcu.c +++ b/drivers/clk/ingenic/tcu.c @@ -189,7 +189,7 @@ static long ingenic_tcu_round_rate(struct clk_hw *hw, unsigned long req_rate, u8 prescale; if (req_rate > rate) - return -EINVAL; + return rate; prescale = ingenic_tcu_get_prescale(rate, req_rate); |