From: Ilia Sergachev Date: Mon, 9 Sep 2019 11:19:43 +0000 (+0200) Subject: fix crc32 X-Git-Tag: 24jan2021_ls180~1019^2^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2400f0f43d0abac7836470e80b28cdaab3ec9d39;p=litex.git fix crc32 --- diff --git a/litex/soc/software/libbase/crc32.c b/litex/soc/software/libbase/crc32.c index b8b58a76..68f7b336 100644 --- a/litex/soc/software/libbase/crc32.c +++ b/litex/soc/software/libbase/crc32.c @@ -68,7 +68,6 @@ static const unsigned int crc_table[256] = { unsigned int crc32(const unsigned char *buffer, unsigned int len) { - return 0; unsigned int crc; crc = 0; crc = crc ^ 0xffffffffL;