blob: 37b71f80a68ae667f3c0b1c2e0e49e3285048da0 [file] [log] [blame]
Jorge Ramirez-Ortizf7c14d52018-09-23 09:39:37 +02001/*
2 * Copyright (c) 2015-2017, Renesas Electronics Corporation. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef MICRO_DELAY_H
8#define MICRO_DELAY_H
Jorge Ramirez-Ortizf7c14d52018-09-23 09:39:37 +02009
Julius Werner53456fc2019-07-09 13:49:11 -070010#ifndef __ASSEMBLER__
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011#include <stdint.h>
Marek Vasut1778b412018-12-26 15:57:08 +010012void rcar_micro_delay(uint64_t micro_sec);
Jorge Ramirez-Ortizf7c14d52018-09-23 09:39:37 +020013#endif
14
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000015#endif /* MICRO_DELAY_H */