pldm: Move off pldm_bios_table_attr_entry_string_encode_check()
Generated with:
```
$ CLANG_VERSION=18 ./subprojects/libpldm/scripts/apply-renames ./subprojects/libpldm/evolutions/current/pldm_bios_table_attr_entry_string_encode_check.yaml
```
Change-Id: I5cbbedd1ef855ead2048b25b35bb9c3e5547175e
Signed-off-by: Andrew Jeffery <andrew@codeconstruct.com.au>
diff --git a/libpldmresponder/bios_table.cpp b/libpldmresponder/bios_table.cpp
index 092af32..f425b29 100644
--- a/libpldmresponder/bios_table.cpp
+++ b/libpldmresponder/bios_table.cpp
@@ -154,8 +154,8 @@
auto tableSize = table.size();
table.resize(tableSize + entryLength, 0);
- int rc = pldm_bios_table_attr_entry_string_encode_check(
- table.data() + tableSize, entryLength, info);
+ int rc = pldm_bios_table_attr_entry_string_encode(table.data() + tableSize,
+ entryLength, info);
if (rc != PLDM_SUCCESS)
{
error("Failed to encode BIOS table string entry, response code '{RC}'",