diff options
Diffstat (limited to 'drivers/clk/ti/Makefile')
-rw-r--r-- | drivers/clk/ti/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/clk/ti/Makefile b/drivers/clk/ti/Makefile index ed4d0aaf8916..105ffd0f5e79 100644 --- a/drivers/clk/ti/Makefile +++ b/drivers/clk/ti/Makefile | |||
@@ -1,13 +1,17 @@ | |||
1 | ifneq ($(CONFIG_OF),) | ||
2 | obj-y += clk.o autoidle.o clockdomain.o | 1 | obj-y += clk.o autoidle.o clockdomain.o |
3 | clk-common = dpll.o composite.o divider.o gate.o \ | 2 | clk-common = dpll.o composite.o divider.o gate.o \ |
4 | fixed-factor.o mux.o apll.o | 3 | fixed-factor.o mux.o apll.o |
5 | obj-$(CONFIG_SOC_AM33XX) += $(clk-common) clk-33xx.o | 4 | obj-$(CONFIG_SOC_AM33XX) += $(clk-common) clk-33xx.o |
5 | obj-$(CONFIG_SOC_TI81XX) += $(clk-common) fapll.o clk-816x.o | ||
6 | obj-$(CONFIG_ARCH_OMAP2) += $(clk-common) interface.o clk-2xxx.o | 6 | obj-$(CONFIG_ARCH_OMAP2) += $(clk-common) interface.o clk-2xxx.o |
7 | obj-$(CONFIG_ARCH_OMAP3) += $(clk-common) interface.o clk-3xxx.o | 7 | obj-$(CONFIG_ARCH_OMAP3) += $(clk-common) interface.o \ |
8 | clk-3xxx.o | ||
8 | obj-$(CONFIG_ARCH_OMAP4) += $(clk-common) clk-44xx.o | 9 | obj-$(CONFIG_ARCH_OMAP4) += $(clk-common) clk-44xx.o |
9 | obj-$(CONFIG_SOC_OMAP5) += $(clk-common) clk-54xx.o | 10 | obj-$(CONFIG_SOC_OMAP5) += $(clk-common) clk-54xx.o |
10 | obj-$(CONFIG_SOC_DRA7XX) += $(clk-common) clk-7xx.o \ | 11 | obj-$(CONFIG_SOC_DRA7XX) += $(clk-common) clk-7xx.o \ |
11 | clk-dra7-atl.o | 12 | clk-dra7-atl.o |
12 | obj-$(CONFIG_SOC_AM43XX) += $(clk-common) clk-43xx.o | 13 | obj-$(CONFIG_SOC_AM43XX) += $(clk-common) clk-43xx.o |
14 | |||
15 | ifdef CONFIG_ATAGS | ||
16 | obj-$(CONFIG_ARCH_OMAP3) += clk-3xxx-legacy.o | ||
13 | endif | 17 | endif |