acrn-hypervisor/hypervisor/include/common/delay.h
Jiaqing Zhao 7bfbdf04b8 doc: remove '@return None' for void functions
doxygen will warn that documented return type is found for functions
that does not return anything in 1.9.4 or later versions. 'None' is
not a special keyword in doxyge, it will recognize it as description
to the return value that does not exist in void functions.

Tracked-On: #8425
Signed-off-by: Jiaqing Zhao <jiaqing.zhao@linux.intel.com>
Reviewed-by: Junjie Mao <junjie.mao@intel.com>
2023-08-03 14:56:29 -07:00

20 lines
308 B
C

/*
* Copyright (C) 2021 Intel Corporation.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef COMMON_DELAY_H
#define COMMON_DELAY_H
#include <types.h>
/**
* @brief Busy wait a few micro seconds.
*
* @param[in] us micro seconds to delay.
*/
void udelay(uint32_t us);
#endif /* COMMON_DELAY_H */