X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=crc%2Fcrc32c.c;h=34944aea92dedcd779663b6ba8b8f99d857cc43e;hb=6c5d3a1c08bda1bbf22187c7b80573400e1c1053;hp=8bbea685c47c5614e2d0f8303d3bb28d394bb30d;hpb=bac39e0e8807a1d52863ad8304e67221df2bc63b;p=fio.git diff --git a/crc/crc32c.c b/crc/crc32c.c index 8bbea685..34944aea 100644 --- a/crc/crc32c.c +++ b/crc/crc32c.c @@ -30,7 +30,7 @@ * any later version. * */ -#include +#include "crc32c.h" /* * This is the CRC-32C table @@ -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;