summaryrefslogtreecommitdiff
path: root/include/asm.h
diff options
context:
space:
mode:
authorSteve McIntyre <steve@einval.com>2024-02-17 17:35:37 +0000
committerSteve McIntyre <steve@einval.com>2024-05-03 14:36:51 +0100
commitf898e219b4b06cf2bb7af18b5cc7a00754d3d274 (patch)
treec535b3ff1b13388dbaa7072c7f5ec78f5d73ee53 /include/asm.h
parent3cf4042d82ef314f19e9f7bd4f86c4b59efd8233 (diff)
downloadefi-boot-shim-f898e219b4b06cf2bb7af18b5cc7a00754d3d274.tar.gz
efi-boot-shim-f898e219b4b06cf2bb7af18b5cc7a00754d3d274.zip
New upstream version 15.8
Diffstat (limited to 'include/asm.h')
-rw-r--r--include/asm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm.h b/include/asm.h
index 03b06557..f5118b23 100644
--- a/include/asm.h
+++ b/include/asm.h
@@ -40,11 +40,11 @@ static inline void wait_for_debug(void)
{
uint64_t a, b;
int x;
- extern void msleep(unsigned long msecs);
+ extern void usleep(unsigned long usecs);
a = read_counter();
for (x = 0; x < 1000; x++) {
- msleep(1000);
+ usleep(1000);
b = read_counter();
if (a != b)
break;