blob: b2bae28436ee0a210c72d9148c887ac142a1759a [file] [log] [blame]
Manish Pandeyf218ffe2020-04-09 15:16:40 +01001/*
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
9int console_putc(int c)
10{
11 return console_pl011_putc(c);
12}