]> git.proxmox.com Git - efi-boot-shim.git/blobdiff - include/asm.h
New upstream version 15.8
[efi-boot-shim.git] / include / asm.h
index 03b06557e0bc05af3cbd96237a2016f78e59d885..f5118b2356e6ce631be77568a7d343d17fe2ea44 100644 (file)
@@ -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;