diff options
author | Anup Patel <Anup.Patel@wdc.com> | 2019-02-25 08:14:55 +0000 |
---|---|---|
committer | Andes <uboot@andestech.com> | 2019-02-27 09:12:33 +0800 |
commit | b630d57d0ab45639eea02f2671c2aa0d023c89ac (patch) | |
tree | 62edb2090d371ae6a998d4654443223dee0273d1 /drivers/clk/Makefile | |
parent | c40b6df87fc0193a7184ada9f53aaf57cdec0cdf (diff) | |
download | u-boot-b630d57d0ab45639eea02f2671c2aa0d023c89ac.tar.gz u-boot-b630d57d0ab45639eea02f2671c2aa0d023c89ac.tar.bz2 u-boot-b630d57d0ab45639eea02f2671c2aa0d023c89ac.zip |
clk: Add fixed-factor clock driver
This patch adds fixed-factor clock driver which derives clock
rate by dividing (div) and multiplying (mult) fixed factors
to a parent clock.
Signed-off-by: Atish Patra <atish.patra@wdc.com>
Signed-off-by: Anup Patel <anup.patel@wdc.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/clk/Makefile')
-rw-r--r-- | drivers/clk/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile index de3d60ed05..1d9d725cae 100644 --- a/drivers/clk/Makefile +++ b/drivers/clk/Makefile @@ -4,7 +4,9 @@ # Wolfgang Denk, DENX Software Engineering, wd@denx.de. # -obj-$(CONFIG_$(SPL_TPL_)CLK) += clk-uclass.o clk_fixed_rate.o +obj-$(CONFIG_$(SPL_TPL_)CLK) += clk-uclass.o +obj-$(CONFIG_$(SPL_TPL_)CLK) += clk_fixed_rate.o +obj-$(CONFIG_$(SPL_TPL_)CLK) += clk_fixed_factor.o obj-y += imx/ obj-y += tegra/ |