diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2023-07-07 22:02:48 +0200 |
---|---|---|
committer | Abel Vesa <abel.vesa@linaro.org> | 2023-07-25 09:35:10 +0200 |
commit | 2deed4cda3b76bcb8be2533f5bd07803b1bfa452 (patch) | |
tree | 1cabb309ee81f9ff53c9fcb03d95f06b45787849 /drivers/clk/imx | |
parent | clk: imx: Add 519.75MHz frequency support for imx9 pll (diff) | |
download | linux-2deed4cda3b76bcb8be2533f5bd07803b1bfa452.tar.xz linux-2deed4cda3b76bcb8be2533f5bd07803b1bfa452.zip |
clk: imx: clk-gpr-mux: Simplify .determine_rate()
imx_clk_gpr_mux_determine_rate() is the same as __clk_mux_determine_rate(),
so use the latter to save some LoC.
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Link: https://lore.kernel.org/r/ac8bd50c41b84f244bb0ec94e8aed25c513c9037.1688760152.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Abel Vesa <abel.vesa@linaro.org>
Diffstat (limited to 'drivers/clk/imx')
-rw-r--r-- | drivers/clk/imx/clk-gpr-mux.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/clk/imx/clk-gpr-mux.c b/drivers/clk/imx/clk-gpr-mux.c index 0b5a97698b47..0e14b61cba84 100644 --- a/drivers/clk/imx/clk-gpr-mux.c +++ b/drivers/clk/imx/clk-gpr-mux.c @@ -65,16 +65,10 @@ static int imx_clk_gpr_mux_set_parent(struct clk_hw *hw, u8 index) return regmap_update_bits(priv->regmap, priv->reg, priv->mask, val); } -static int imx_clk_gpr_mux_determine_rate(struct clk_hw *hw, - struct clk_rate_request *req) -{ - return clk_mux_determine_rate_flags(hw, req, 0); -} - static const struct clk_ops imx_clk_gpr_mux_ops = { .get_parent = imx_clk_gpr_mux_get_parent, .set_parent = imx_clk_gpr_mux_set_parent, - .determine_rate = imx_clk_gpr_mux_determine_rate, + .determine_rate = __clk_mux_determine_rate, }; struct clk_hw *imx_clk_gpr_mux(const char *name, const char *compatible, |