mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-04-30 20:53:56 +00:00
Replace the BSD-3-Clause boiler plate license text with an SPDX tag. Fixes: #189 Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
17 lines
266 B
C
17 lines
266 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <hv_lib.h>
|
|
|
|
void mdelay(uint32_t loop_count)
|
|
{
|
|
/* Loop until done */
|
|
while (loop_count-- != 0) {
|
|
/* Delay for 1 ms */
|
|
udelay(1000);
|
|
}
|
|
}
|