utils: Rename crc32() to pldm_edac_crc32()

Chip away at transitioning the library API surface to a consistent
symbol prefix.

Change-Id: I1abd96407867ddf8390cb9fbba9a8085478f08dd
Signed-off-by: Andrew Jeffery <andrew@codeconstruct.com.au>
diff --git a/src/dsp/bios_table.c b/src/dsp/bios_table.c
index 436b7e3..fd3b383 100644
--- a/src/dsp/bios_table.c
+++ b/src/dsp/bios_table.c
@@ -947,7 +947,7 @@
 	size_t pad_size = pad_size_get(*size);
 	table_end = pad_append(table_end, pad_size);
 
-	uint32_t checksum = crc32(table, *size + pad_size);
+	uint32_t checksum = pldm_edac_crc32(table, *size + pad_size);
 	checksum_append(table_end, checksum);
 	*size = total_length;
 
@@ -1243,7 +1243,7 @@
 	}
 
 	uint32_t src_crc = le32toh(*(uint32_t *)(table + size - 4));
-	uint32_t dst_crc = crc32(table, size - 4);
+	uint32_t dst_crc = pldm_edac_crc32(table, size - 4);
 
 	return src_crc == dst_crc;
 }
diff --git a/src/utils.c b/src/utils.c
index 5e92cbf..cb9d10e 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -86,7 +86,7 @@
 };
 
 LIBPLDM_ABI_STABLE
-uint32_t crc32(const void *data, size_t size)
+uint32_t pldm_edac_crc32(const void *data, size_t size)
 {
 	const uint8_t *p = data;
 	uint32_t crc = ~0U;