X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=crc%2Fcrc32c.c;h=b830b9fe026ba77e5727e4a485121fa6a1f76d2e;hb=14215487825ae9cd1b6b4f064d39c6d5c609ad44;hp=8bbea685c47c5614e2d0f8303d3bb28d394bb30d;hpb=1025d13dc9b230ac798eda37c7f3bb4471951a00;p=fio.git diff --git a/crc/crc32c.c b/crc/crc32c.c index 8bbea685..b830b9fe 100644 --- a/crc/crc32c.c +++ b/crc/crc32c.c @@ -113,7 +113,7 @@ static const uint32_t crc32c_table[256] = { * crc using table. */ -uint32_t crc32c(unsigned char const *data, unsigned long length) +uint32_t crc32c_sw(unsigned char const *data, unsigned long length) { uint32_t crc = ~0;