diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2023-12-22 19:11:03 +0300 |
---|---|---|
committer | Abel Vesa <abel.vesa@linaro.org> | 2024-02-26 11:58:42 +0300 |
commit | e1ed0b0362285981c575f12ae9e8b9dfe56a046c (patch) | |
tree | e0f8c2b6f89aa422b75a37679df39c5eab67eeb4 | |
parent | fed6bf52c86df27ad4f39a72cdad8c27da9a50ba (diff) | |
download | linux-e1ed0b0362285981c575f12ae9e8b9dfe56a046c.tar.xz |
clk: imx: composite-8m: Delete two unnecessary initialisations in __imx8m_clk_hw_composite()
Two local variables will eventually be set to appropriate pointers
a bit later. Thus omit the explicit initialisation at the beginning.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Link: https://lore.kernel.org/r/6604590e-d0f7-4798-a1b9-b2f474f3a642@web.de
Signed-off-by: Abel Vesa <abel.vesa@linaro.org>
-rw-r--r-- | drivers/clk/imx/clk-composite-8m.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/imx/clk-composite-8m.c b/drivers/clk/imx/clk-composite-8m.c index eb5392f7a257..8cc07d056a83 100644 --- a/drivers/clk/imx/clk-composite-8m.c +++ b/drivers/clk/imx/clk-composite-8m.c @@ -212,9 +212,9 @@ struct clk_hw *__imx8m_clk_hw_composite(const char *name, { struct clk_hw *hw = ERR_PTR(-ENOMEM), *mux_hw; struct clk_hw *div_hw, *gate_hw = NULL; - struct clk_divider *div = NULL; + struct clk_divider *div; struct clk_gate *gate = NULL; - struct clk_mux *mux = NULL; + struct clk_mux *mux; const struct clk_ops *divider_ops; const struct clk_ops *mux_ops; |