summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2018-11-27 22:10:56 -0800
committerJulius Werner <jwerner@chromium.org>2018-12-06 16:18:10 -0800
commit91b48c9f8f44db91ae73635cc543fb89d292a6f7 (patch)
tree2302ec1d9d9bed4475c1cf168759f1be1eb9b3d2 /Makefile
parent985ee0b7e8d039105de48f60c0195f391f86a625 (diff)
drivers/console: Reimplement MUTLI_CONSOLE_API framework in C
Now that we have switched to using the stack in MULTI_CONSOLE_API framework functions and have factored all code involved in crash reporting out into a separate file, there's really no reason to keep the main framework code in assembly anymore. This patch rewrites it in C which allows us to have a single implementation across aarch32/64 and should be much easier to maintain going forward. Change-Id: I6c85a01e89a79e8b233f3f8bee812f0dbd026221 Signed-off-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 63f283f3..eed7c7a8 100644
--- a/Makefile
+++ b/Makefile
@@ -214,7 +214,7 @@ include lib/libc/libc.mk
BL_COMMON_SOURCES += common/bl_common.c \
common/tf_log.c \
common/${ARCH}/debug.S \
- drivers/console/${ARCH}/multi_console.S \
+ drivers/console/multi_console.c \
lib/${ARCH}/cache_helpers.S \
lib/${ARCH}/misc_helpers.S \
plat/common/plat_bl_common.c \