* Fix: if using crc32 command watchdog timed out
* change function call crc32(..) to the watchdog save variant
  crc_32_wd(..) to support watchdog reset


Signed-off-by: Jens Scharsig <e...@bus-elektronik.de>
---
 common/cmd_mem.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/common/cmd_mem.c b/common/cmd_mem.c
index a5576aa..4daa1b3 100644
--- a/common/cmd_mem.c
+++ b/common/cmd_mem.c
@@ -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",
-- 
1.7.3.4

_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to