mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-01 21:23:59 +00:00
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>
20 lines
308 B
C
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 */
|