mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-13 03:26:54 +07:00
45622e2162
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>
10 lines
376 B
Makefile
10 lines
376 B
Makefile
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
|
|
endif
|