]> Git Repo - J-u-boot.git/blobdiff - lib/crc32.c
tpm: Rename tpm2_allow_extend()
[J-u-boot.git] / lib / crc32.c
index 5a3127e03adad2cb77449696452d11d283df5563..f36f1763064fba5b015e0d9ec416f3959195df7a 100644 (file)
@@ -10,9 +10,7 @@
 
 #ifdef USE_HOSTCC
 #include <arpa/inet.h>
-#include <u-boot/crc.h>
 #else
-#include <common.h>
 #include <efi_loader.h>
 #endif
 #include <compiler.h>
@@ -255,7 +253,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);
This page took 0.024559 seconds and 4 git commands to generate.