mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-26 19:36:41 +00:00
clk: sunxi-ng: multiplier: Fix fractional mode
Driver for multiplier clock is missing a call to
ccu_frac_helper_enable() when fractional mode is selected.
Add a call to ccu_frac_helper_enable().
Fixes: d77e8135b3
("clk: sunxi-ng: multiplier: Add fractional support")
Signed-off-by: Jernej Skrabec <jernej.skrabec@siol.net>
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
This commit is contained in:
parent
b64dfec010
commit
1e92ae651e
@ -111,10 +111,13 @@ static int ccu_mult_set_rate(struct clk_hw *hw, unsigned long rate,
|
||||
unsigned long flags;
|
||||
u32 reg;
|
||||
|
||||
if (ccu_frac_helper_has_rate(&cm->common, &cm->frac, rate))
|
||||
if (ccu_frac_helper_has_rate(&cm->common, &cm->frac, rate)) {
|
||||
ccu_frac_helper_enable(&cm->common, &cm->frac);
|
||||
|
||||
return ccu_frac_helper_set_rate(&cm->common, &cm->frac, rate);
|
||||
else
|
||||
} else {
|
||||
ccu_frac_helper_disable(&cm->common, &cm->frac);
|
||||
}
|
||||
|
||||
parent_rate = ccu_mux_helper_apply_prediv(&cm->common, &cm->mux, -1,
|
||||
parent_rate);
|
||||
|
Loading…
Reference in New Issue
Block a user