aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/picasso/psp_verstage/delay.c
blob: ff62524503d2710a0bd856075e61f249923d629a (plain)
1
2
3
4
5
6
7
8
9
10
/* SPDX-License-Identifier: GPL-2.0-only */

#include <bl_uapp/bl_syscall_public.h>
#include <delay.h>
#include <stdint.h>

void udelay(uint32_t usecs)
{
	svc_delay_in_usec(usecs);
}