mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 10:18:38 +00:00
653bcce408
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>
9 lines
103 B
Makefile
9 lines
103 B
Makefile
#
|
|
# Makefile for at91 specific clk
|
|
#
|
|
|
|
ifdef CONFIG_CLK_CCF
|
|
obj-y += pmc.o
|
|
else
|
|
obj-y += compat.o
|
|
endif
|