dsp: bios_table: Rename pldm_bios_table_append_pad_checksum_check()

Introduce pldm_bios_table_append_pad_checksum(), deprecate
pldm_bios_table_append_pad_checksum_check(), add rename configuration
and apply it.

Change-Id: I77e79f4be6cecbac87b47d2140e1714b519c4e8d
Signed-off-by: Andrew Jeffery <andrew@codeconstruct.com.au>
diff --git a/src/dsp/bios_table.c b/src/dsp/bios_table.c
index 844753e..34258af 100644
--- a/src/dsp/bios_table.c
+++ b/src/dsp/bios_table.c
@@ -916,8 +916,8 @@
 }
 
 LIBPLDM_ABI_STABLE
-int pldm_bios_table_append_pad_checksum_check(void *table, size_t capacity,
-					      size_t *size)
+int pldm_bios_table_append_pad_checksum(void *table, size_t capacity,
+					size_t *size)
 {
 	if (!table || !size) {
 		return PLDM_ERROR_INVALID_DATA;
@@ -1197,8 +1197,8 @@
 		goto out;
 	}
 
-	rc = pldm_bios_table_append_pad_checksum_check(
-		dest_table, buffer_length, &copied_length);
+	rc = pldm_bios_table_append_pad_checksum(dest_table, buffer_length,
+						 &copied_length);
 	if (rc == PLDM_SUCCESS) {
 		*dest_length = copied_length;
 	}