TrustedFirmware Git Browser
Code Review
Sign In
review.trustedfirmware.org
/
TF-A
/
tf-a-tests
/
5668f34
/
.
/
drivers
/
console
/
console.c
blob: b2bae28436ee0a210c72d9148c887ac142a1759a [
file
] [
log
] [
blame
]
/*
* Copyright (c) 2020, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include
<drivers/arm/pl011.h>
int
console_putc
(
int
c
)
{
return
console_pl011_putc
(
c
);
}