diff options
author | Ambroise Vincent <ambroise.vincent@arm.com> | 2019-04-04 09:13:28 +0100 |
---|---|---|
committer | Ambroise Vincent <ambroise.vincent@arm.com> | 2019-06-28 10:52:48 +0100 |
commit | 5b6ebeec9c99f8d6a539d3b15e5dfb827891174a (patch) | |
tree | 1e72bd9f7afdc361596977491a88e6ee89176658 /include | |
parent | 51e24ec2c6f4d72df50cf62766311f3773d4e117 (diff) | |
download | platform_external_arm-trusted-firmware-5b6ebeec9c99f8d6a539d3b15e5dfb827891174a.tar.gz platform_external_arm-trusted-firmware-5b6ebeec9c99f8d6a539d3b15e5dfb827891174a.tar.bz2 platform_external_arm-trusted-firmware-5b6ebeec9c99f8d6a539d3b15e5dfb827891174a.zip |
Remove MULTI_CONSOLE_API flag and references to it
The new API becomes the default one.
Change-Id: Ic1d602da3dff4f4ebbcc158b885295c902a24fec
Signed-off-by: Ambroise Vincent <ambroise.vincent@arm.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/drivers/console.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/drivers/console.h b/include/drivers/console.h index 4f26ccef2..f31de9549 100644 --- a/include/drivers/console.h +++ b/include/drivers/console.h @@ -75,13 +75,6 @@ int console_getc(void); /* Flush all consoles registered for the current state. */ int console_flush(void); -#if !MULTI_CONSOLE_API -/* REMOVED on AArch64 -- use console_<driver>_register() instead! */ -int console_init(uintptr_t base_addr, - unsigned int uart_clk, unsigned int baud_rate); -void console_uninit(void); -#endif - #endif /* __ASSEMBLY__ */ #endif /* CONSOLE_H */ |