pldm: Move off pldm_bios_table_attr_value_entry_encode_enum_check()

Generated with:

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

Change-Id: Id989540d8ad4ea114ee059992be4293254e1ecc2
Signed-off-by: Andrew Jeffery <andrew@codeconstruct.com.au>
diff --git a/libpldmresponder/bios_table.cpp b/libpldmresponder/bios_table.cpp
index aad71d1..3b2a42b 100644
--- a/libpldmresponder/bios_table.cpp
+++ b/libpldmresponder/bios_table.cpp
@@ -352,7 +352,7 @@
         handleIndices.size());
     auto tableSize = table.size();
     table.resize(tableSize + entryLength);
-    int rc = pldm_bios_table_attr_value_entry_encode_enum_check(
+    int rc = pldm_bios_table_attr_value_entry_encode_enum(
         table.data() + tableSize, entryLength, attrHandle, attrType,
         handleIndices.size(), handleIndices.data());
     if (rc != PLDM_SUCCESS)
diff --git a/pldmtool/pldm_bios_cmd.cpp b/pldmtool/pldm_bios_cmd.cpp
index fb461d3..6a1b3a6 100644
--- a/pldmtool/pldm_bios_cmd.cpp
+++ b/pldmtool/pldm_bios_cmd.cpp
@@ -855,7 +855,7 @@
 
                 attrValueEntry.resize(entryLength);
                 std::vector<uint8_t> handles = {i};
-                int rc = pldm_bios_table_attr_value_entry_encode_enum_check(
+                int rc = pldm_bios_table_attr_value_entry_encode_enum(
                     attrValueEntry.data(), attrValueEntry.size(),
                     attrEntry->attr_handle, attrType, 1, handles.data());
                 if (rc != PLDM_SUCCESS)