diff options
author | Alexander Stein <alexander.stein@ew.tq-group.com> | 2021-11-03 13:39:47 +0100 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2021-11-05 15:26:16 -0700 |
commit | 289ebc4f29ce2d25e1d1ecfc7fa9a48813b40170 (patch) | |
tree | 925b38875ea37cdf661f54dcd251b1fef70bacb1 /drivers | |
parent | f45c5b1c27293f834682e89003f88b3512329ab4 (diff) | |
download | linux-stable-289ebc4f29ce2d25e1d1ecfc7fa9a48813b40170.tar.gz linux-stable-289ebc4f29ce2d25e1d1ecfc7fa9a48813b40170.tar.bz2 linux-stable-289ebc4f29ce2d25e1d1ecfc7fa9a48813b40170.zip |
clk: imx8m: Do not set IMX_COMPOSITE_CORE for non-regular composites
Only imx8m_clk_hw_composite_core needs to set this flag.
Fixes: a60fe746df94 ("clk: imx: Rework all imx_clk_hw_composite wrappers")
Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
Link: https://lore.kernel.org/r/20211103123947.3222443-1-alexander.stein@ew.tq-group.com
Reviewed-by: Abel Vesa <abel.vesa@nxp.com>
Tested-by: Adam Ford <aford173@gmail.com> #imx8mm-beacon
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/clk/imx/clk.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/imx/clk.h b/drivers/clk/imx/clk.h index 819949973db1..7d220a01de1f 100644 --- a/drivers/clk/imx/clk.h +++ b/drivers/clk/imx/clk.h @@ -391,11 +391,11 @@ struct clk_hw *__imx8m_clk_hw_composite(const char *name, #define imx8m_clk_hw_composite(name, parent_names, reg) \ _imx8m_clk_hw_composite(name, parent_names, reg, \ - IMX_COMPOSITE_CORE, IMX_COMPOSITE_CLK_FLAGS_DEFAULT) + 0, IMX_COMPOSITE_CLK_FLAGS_DEFAULT) #define imx8m_clk_hw_composite_critical(name, parent_names, reg) \ _imx8m_clk_hw_composite(name, parent_names, reg, \ - IMX_COMPOSITE_CORE, IMX_COMPOSITE_CLK_FLAGS_CRITICAL) + 0, IMX_COMPOSITE_CLK_FLAGS_CRITICAL) #define imx8m_clk_hw_composite_bus(name, parent_names, reg) \ _imx8m_clk_hw_composite(name, parent_names, reg, \ |