diff options
author | Tero Kristo <t-kristo@ti.com> | 2013-07-19 10:36:01 +0200 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2014-01-17 21:35:41 +0100 |
commit | 45622e2162b6d5907006f4595f2ac862afe1dfb5 (patch) | |
tree | 93b492bc3c97404b7cd4f798440cf088e72425e9 /drivers/clk/ti/Makefile | |
parent | CLK: TI: add dra7 clock init file (diff) | |
download | linux-45622e2162b6d5907006f4595f2ac862afe1dfb5.tar.xz linux-45622e2162b6d5907006f4595f2ac862afe1dfb5.zip |
CLK: TI: add am33xx clock init file
clk-33xx.c now contains the clock init functionality for am33xx, including
DT clock registration and adding of static clkdev entries.
This patch also moves the omap2_clk_enable_init_clocks declaration to
the driver include, as this is needed by the am33xx clock init code.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Tested-by: Nishanth Menon <nm@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk/ti/Makefile')
-rw-r--r-- | drivers/clk/ti/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/ti/Makefile b/drivers/clk/ti/Makefile index cd445cafcdd9..51b00f80cc14 100644 --- a/drivers/clk/ti/Makefile +++ b/drivers/clk/ti/Makefile @@ -2,6 +2,7 @@ ifneq ($(CONFIG_OF),) 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 +obj-$(CONFIG_SOC_AM33XX) += $(clk-common) clk-33xx.o obj-$(CONFIG_ARCH_OMAP4) += $(clk-common) clk-44xx.o obj-$(CONFIG_SOC_OMAP5) += $(clk-common) clk-54xx.o obj-$(CONFIG_SOC_DRA7XX) += $(clk-common) clk-7xx.o |