mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
2a65ed42dc
Some clocks in the Allwinner SoCs clocks unit are just muxes. However, those muxes might also be found in some other complicated clocks that would benefit from the code in there to deal with "advanced" features, like pre-dividers. Introduce a set of helpers to reduce the code duplication in such cases. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Michael Turquette <mturquette@baylibre.com> Link: lkml.kernel.org/r/20160629190535.11855-6-maxime.ripard@free-electrons.com
9 lines
245 B
Makefile
9 lines
245 B
Makefile
# Common objects
|
|
obj-$(CONFIG_SUNXI_CCU) += ccu_common.o
|
|
obj-$(CONFIG_SUNXI_CCU) += ccu_reset.o
|
|
|
|
# Base clock types
|
|
obj-$(CONFIG_SUNXI_CCU_FRAC) += ccu_frac.o
|
|
obj-$(CONFIG_SUNXI_CCU_GATE) += ccu_gate.o
|
|
obj-$(CONFIG_SUNXI_CCU_MUX) += ccu_mux.o
|