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

Move delay 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: I5e806bd0e0a0a4b436048513b7089db90ff9805f
15 lines
299 B
C
15 lines
299 B
C
/*
|
|
* Copyright (c) 2015-2017, Renesas Electronics Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef MICRO_DELAY_H
|
|
#define MICRO_DELAY_H
|
|
|
|
#ifndef __ASSEMBLER__
|
|
#include <stdint.h>
|
|
void rcar_micro_delay(uint64_t micro_sec);
|
|
#endif
|
|
|
|
#endif /* MICRO_DELAY_H */
|