Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

clk: ti: Allow COMPILE_TEST to build selected drivers

The arch independent drivers can be build testeed with
COMPILE_TEST. Let's allow that for drivers/clk/ti.

Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Michael Turquette <mturquette@baylibre.com>

authored by

Tony Lindgren and committed by
Michael Turquette
c2ee9bdc 21330497

+5 -1
+1 -1
drivers/clk/Makefile
··· 78 78 obj-$(CONFIG_ARCH_STI) += st/ 79 79 obj-$(CONFIG_ARCH_SUNXI) += sunxi/ 80 80 obj-$(CONFIG_ARCH_TEGRA) += tegra/ 81 - obj-$(CONFIG_ARCH_OMAP2PLUS) += ti/ 81 + obj-y += ti/ 82 82 obj-$(CONFIG_ARCH_U8500) += ux500/ 83 83 obj-$(CONFIG_COMMON_CLK_VERSATILE) += versatile/ 84 84 obj-$(CONFIG_X86) += x86/
+4
drivers/clk/ti/Makefile
··· 1 + ifeq ($(CONFIG_ARCH_OMAP2PLUS), y) 2 + 1 3 obj-y += clk.o autoidle.o clockdomain.o 2 4 clk-common = dpll.o composite.o divider.o gate.o \ 3 5 fixed-factor.o mux.o apll.o \ ··· 20 18 ifdef CONFIG_ATAGS 21 19 obj-$(CONFIG_ARCH_OMAP3) += clk-3xxx-legacy.o 22 20 endif 21 + 22 + endif # CONFIG_ARCH_OMAP2PLUS 23 23 24 24 obj-$(CONFIG_COMMON_CLK_TI_ADPLL) += adpll.o