mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
Fix: if using crc32 command watchdog timed out
* Fix: if using crc32 command watchdog timed out * change function call crc32(..) to the watchdog-safe variant crc_32_wd(..) to support watchdog reset Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
This commit is contained in:
parent
b038db852b
commit
39c6e039a0
1 changed files with 2 additions and 2 deletions
|
@ -1092,7 +1092,7 @@ int do_mem_crc (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|||
|
||||
length = simple_strtoul (argv[2], NULL, 16);
|
||||
|
||||
crc = crc32 (0, (const uchar *) addr, length);
|
||||
crc = crc32_wd (0, (const uchar *) addr, length, CHUNKSZ_CRC32);
|
||||
|
||||
printf ("CRC32 for %08lx ... %08lx ==> %08lx\n",
|
||||
addr, addr + length - 1, crc);
|
||||
|
@ -1137,7 +1137,7 @@ usage:
|
|||
addr += base_address;
|
||||
length = simple_strtoul(*av++, NULL, 16);
|
||||
|
||||
crc = crc32(0, (const uchar *) addr, length);
|
||||
crc = crc32_wd (0, (const uchar *) addr, length, CHUNKSZ_CRC32);
|
||||
|
||||
if (!verify) {
|
||||
printf ("CRC32 for %08lx ... %08lx ==> %08lx\n",
|
||||
|
|
Loading…
Reference in a new issue