forked from Minki/linux
8330148011
This AT91 specific Kconfig option removed the code that dealt with programmable clocks. Each AT91 SoC embeds programmable clocks and there is little gain to remove this code in case that such a clock is not used. If this option is not selected, it causes certain drivers to fail to build. We simply remove this option instead of adding code just to build a workaround. Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> Signed-off-by: Kevin Hilman <khilman@linaro.org>
12 lines
300 B
Makefile
12 lines
300 B
Makefile
#
|
|
# Makefile for at91 specific clk
|
|
#
|
|
|
|
obj-y += pmc.o
|
|
obj-y += clk-main.o clk-pll.o clk-plldiv.o clk-master.o
|
|
obj-y += clk-system.o clk-peripheral.o clk-programmable.o
|
|
|
|
obj-$(CONFIG_HAVE_AT91_UTMI) += clk-utmi.o
|
|
obj-$(CONFIG_HAVE_AT91_USB_CLK) += clk-usb.o
|
|
obj-$(CONFIG_HAVE_AT91_SMD) += clk-smd.o
|