efi_selftest: Improve the FatToStr() unit test
[platform/kernel/u-boot.git] / lib / crc32.c
index 5a3127e..aa94d70 100644 (file)
@@ -255,7 +255,7 @@ uint32_t crc32_wd(uint32_t crc, const unsigned char *buf, uInt len,
                        chunk = chunk_sz;
                crc = crc32(crc, curr, chunk);
                curr += chunk;
-               WATCHDOG_RESET ();
+               schedule();
        }
 #else
        crc = crc32(crc, buf, len);