diff options
author | Abel Vesa <abel.vesa@nxp.com> | 2018-12-01 13:52:14 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2018-12-03 21:12:50 +0300 |
commit | d3ff9728134eeaa13d5bbb23c3f2e188f99cfdf9 (patch) | |
tree | 22eaa58af4a751afd934cf4a60e29b0cf489e2f5 /drivers/clk/imx/Makefile | |
parent | 1cf3817bf1f52e57b3f5eb0413ee0d7f0c2e9829 (diff) | |
download | linux-d3ff9728134eeaa13d5bbb23c3f2e188f99cfdf9.tar.xz |
clk: imx: Add imx composite clock
Since a lot of clocks on imx8m are formed by a mux, gate, predivider and
divider, the idea here is to combine all of those into one composite clock,
but we need to deal with both predivider and divider at the same time and
therefore we add the imx8m_clk_composite_divider_ops and register
the composite clock with those.
Signed-off-by: Abel Vesa <abel.vesa@nxp.com>
Suggested-by: Sascha Hauer <s.hauer@pengutronix.de>
Reviewed-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/imx/Makefile')
-rw-r--r-- | drivers/clk/imx/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/imx/Makefile b/drivers/clk/imx/Makefile index 8c3baa7e6496..2288e5b3912f 100644 --- a/drivers/clk/imx/Makefile +++ b/drivers/clk/imx/Makefile @@ -3,6 +3,7 @@ obj-y += \ clk.o \ clk-busy.o \ + clk-composite-8m.o \ clk-cpu.o \ clk-fixup-div.o \ clk-fixup-mux.o \ |