summaryrefslogtreecommitdiffstats
path: root/common/clock.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/clock.c')
-rw-r--r--common/clock.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/common/clock.c b/common/clock.c
index e22b6a5409..ad708adbbf 100644
--- a/common/clock.c
+++ b/common/clock.c
@@ -92,6 +92,14 @@ int is_timeout(uint64_t start_ns, uint64_t time_offset_ns)
}
EXPORT_SYMBOL(is_timeout);
+void ndelay(unsigned long nsecs)
+{
+ uint64_t start = get_time_ns();
+
+ while(!is_timeout(start, nsecs));
+}
+EXPORT_SYMBOL(ndelay);
+
void udelay(unsigned long usecs)
{
uint64_t start = get_time_ns();