pldm: Move off pldm_bios_table_string_entry_encode_check()

Generated with:

```
$ CLANG_VERSION=18 ./subprojects/libpldm/scripts/apply-renames ./subprojects/libpldm/evolutions/current/pldm_bios_table_string_entry_encode_check.yaml
```

Change-Id: I254f11a4002c3a6308acb1e59473dc5bbf367afc
Signed-off-by: Andrew Jeffery <andrew@codeconstruct.com.au>
diff --git a/libpldmresponder/bios_table.cpp b/libpldmresponder/bios_table.cpp
index b264ea7..20cc87d 100644
--- a/libpldmresponder/bios_table.cpp
+++ b/libpldmresponder/bios_table.cpp
@@ -113,8 +113,8 @@
     auto entryLength = pldm_bios_table_string_entry_encode_length(str.length());
     table.resize(tableSize + entryLength);
     // Preconditions are upheld therefore no error check necessary
-    pldm_bios_table_string_entry_encode_check(
-        table.data() + tableSize, entryLength, str.c_str(), str.length());
+    pldm_bios_table_string_entry_encode(table.data() + tableSize, entryLength,
+                                        str.c_str(), str.length());
     return reinterpret_cast<pldm_bios_string_table_entry*>(table.data() +
                                                            tableSize);
 }