Sync register macros with Linux code. This will be helpful to develop the counterpart of Linux. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
14 lines
211 B
Makefile
14 lines
211 B
Makefile
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += lowlevel_init.o
|
|
obj-$(CONFIG_DEBUG_LL) += debug_ll.o
|
|
else
|
|
obj-y += late_lowlevel_init.o
|
|
obj-y += cache-uniphier.o
|
|
endif
|
|
|
|
obj-y += timer.o
|