u-boot/drivers/clk/at91/Makefile
Claudiu Beznea 653bcce408 clk: at91: move clock code to compat.c
Move clock code to compat.c to allow switching to CCF
without mixing CCF code with non CCF code. This prepares the
field for next commits.

Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
2020-09-22 11:27:18 +03:00

9 lines
103 B
Makefile

#
# Makefile for at91 specific clk
#
ifdef CONFIG_CLK_CCF
obj-y += pmc.o
else
obj-y += compat.o
endif