mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-21 03:54:34 +00:00

Move console/scif driver code to common directory, so that the same code can be re-used by both R-Car Gen3 and RZ/G2 platforms. Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> Change-Id: I0b15e4f4ffaaa99e77bcee32b1dad648eeadcd9b
15 lines
295 B
C
15 lines
295 B
C
/*
|
|
* Copyright (c) 2015-2019, Renesas Electronics Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef RCAR_PRINTF_H
|
|
#define RCAR_PRINTF_H
|
|
|
|
#include <string.h>
|
|
|
|
int32_t rcar_set_log_data(int32_t c);
|
|
int32_t rcar_log_init(void);
|
|
|
|
#endif /* RCAR_PRINTF_H */
|