crc32: cleanups, no code changes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2010-10-28 05:38:11 +02:00
parent db9ccc5772
commit 16cc80e989
2 changed files with 2 additions and 3 deletions

View File

@ -55,11 +55,10 @@ gpt_part(int i)
return (gpt_partition *)&part_array[i * part_entry_len];
}
/* TODO: move to libbb */
static uint32_t
gpt_crc32(void *buf, int len)
{
return 0xffffffff ^ crc32_block_endian0(0xffffffff, buf, len, global_crc32_table);
return ~crc32_block_endian0(0xffffffff, buf, len, global_crc32_table);
}
static void