diff options
author | Tero Kristo <t-kristo@ti.com> | 2015-03-02 07:57:28 (GMT) |
---|---|---|
committer | Tero Kristo <t-kristo@ti.com> | 2015-06-02 09:30:58 (GMT) |
commit | b138b0283d35bed0cd3353d7e39add8ac493eb37 (patch) | |
tree | e748f08276e90652b80e7eb48a6925f1a00b5929 /drivers/clk/ti/Makefile | |
parent | f3b19aa5cab65f7e73613aa37f6851ce56b794d1 (diff) | |
download | linux-b138b0283d35bed0cd3353d7e39add8ac493eb37.tar.xz |
clk: ti: move generic OMAP DPLL implementation under drivers/clk
With the legacy clock data now gone, we can start moving OMAP clock
type implementations under clock driver. Start this with moving the
generic OMAP DPLL clock type under TI clock driver.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Diffstat (limited to 'drivers/clk/ti/Makefile')
-rw-r--r-- | drivers/clk/ti/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/clk/ti/Makefile b/drivers/clk/ti/Makefile index 105ffd0..62dae2a 100644 --- a/drivers/clk/ti/Makefile +++ b/drivers/clk/ti/Makefile @@ -1,6 +1,7 @@ obj-y += clk.o autoidle.o clockdomain.o clk-common = dpll.o composite.o divider.o gate.o \ - fixed-factor.o mux.o apll.o + fixed-factor.o mux.o apll.o \ + clkt_dpll.o obj-$(CONFIG_SOC_AM33XX) += $(clk-common) clk-33xx.o obj-$(CONFIG_SOC_TI81XX) += $(clk-common) fapll.o clk-816x.o obj-$(CONFIG_ARCH_OMAP2) += $(clk-common) interface.o clk-2xxx.o |