diff options
author | Maxime Ripard <maxime.ripard@free-electrons.com> | 2016-06-29 19:05:24 (GMT) |
---|---|---|
committer | Michael Turquette <mturquette@baylibre.com> | 2016-07-09 01:04:35 (GMT) |
commit | 89a3dfb787072438f72de95ff3fe7b58213e08c1 (patch) | |
tree | daf43053478fb5cf05282b4fbfd534dc083d66a3 /drivers/clk/sunxi-ng/Makefile | |
parent | 1d80c14248d6082c91a8a9e3d70cc94c3cc18ecb (diff) | |
download | linux-89a3dfb787072438f72de95ff3fe7b58213e08c1.tar.xz |
clk: sunxi-ng: Add fractional lib
Some clocks can be switched to a mode called fractional that have two fixed
output rate you can choose from.
Add a small library to deal with those clocks.
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-4-maxime.ripard@free-electrons.com
Diffstat (limited to 'drivers/clk/sunxi-ng/Makefile')
-rw-r--r-- | drivers/clk/sunxi-ng/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/clk/sunxi-ng/Makefile b/drivers/clk/sunxi-ng/Makefile index 886d078..46f417c 100644 --- a/drivers/clk/sunxi-ng/Makefile +++ b/drivers/clk/sunxi-ng/Makefile @@ -1,3 +1,6 @@ # 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 |