Manish Pandey | f218ffe | 2020-04-09 15:16:40 +0100 | [diff] [blame^] | 1 | /* |
2 | * Copyright (c) 2020, ARM Limited and Contributors. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | */ | ||||
6 | |||||
7 | #include <drivers/arm/pl011.h> | ||||
8 | |||||
9 | int console_putc(int c) | ||||
10 | { | ||||
11 | return console_pl011_putc(c); | ||||
12 | } |