5ee2b87779
Move the Kconfig entry for Versatile (& Express) clock drivers into a separate file and add individual options for sp810 and vexpress_osc drivers, as they are optional in some configurations and may have separate dependencies. Signed-off-by: Pawel Moll <pawel.moll@arm.com> Acked-by: Mike Turquette <mturquette@linaro.org>
9 lines
356 B
Makefile
9 lines
356 B
Makefile
# Makefile for Versatile-specific clocks
|
|
obj-$(CONFIG_ICST) += clk-icst.o
|
|
obj-$(CONFIG_ARCH_INTEGRATOR) += clk-integrator.o
|
|
obj-$(CONFIG_INTEGRATOR_IMPD1) += clk-impd1.o
|
|
obj-$(CONFIG_ARCH_REALVIEW) += clk-realview.o
|
|
obj-$(CONFIG_ARCH_VEXPRESS) += clk-vexpress.o
|
|
obj-$(CONFIG_CLK_SP810) += clk-sp810.o
|
|
obj-$(CONFIG_CLK_VEXPRESS_OSC) += clk-vexpress-osc.o
|