diff options
author | Maxime Ripard <maxime.ripard@free-electrons.com> | 2016-06-29 21:05:24 +0200 |
---|---|---|
committer | Michael Turquette <mturquette@baylibre.com> | 2016-07-09 03:04:35 +0200 |
commit | 89a3dfb787072438f72de95ff3fe7b58213e08c1 (patch) | |
tree | daf43053478fb5cf05282b4fbfd534dc083d66a3 /drivers/clk/sunxi-ng/Makefile | |
parent | clk: sunxi-ng: Add common infrastructure (diff) | |
download | linux-89a3dfb787072438f72de95ff3fe7b58213e08c1.tar.xz linux-89a3dfb787072438f72de95ff3fe7b58213e08c1.zip |
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 886d0786ca51..46f417cb682a 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 |