pldm: Move off pldm_bios_table_attr_value_entry_encode_integer_check()
Generated with:
```
$ CLANG_VERSION=18 ./subprojects/libpldm/scripts/apply-renames ./subprojects/libpldm/evolutions/current/pldm_bios_table_attr_value_entry_encode_integer_check.yaml
```
Change-Id: Ifdae4ebf848a43d9bd997292b35426b26dbf558c
Signed-off-by: Andrew Jeffery <andrew@codeconstruct.com.au>
diff --git a/libpldmresponder/bios_table.cpp b/libpldmresponder/bios_table.cpp
index ea97925..0079104 100644
--- a/libpldmresponder/bios_table.cpp
+++ b/libpldmresponder/bios_table.cpp
@@ -330,7 +330,7 @@
auto tableSize = table.size();
table.resize(tableSize + entryLength);
- int rc = pldm_bios_table_attr_value_entry_encode_integer_check(
+ int rc = pldm_bios_table_attr_value_entry_encode_integer(
table.data() + tableSize, entryLength, attrHandle, attrType, value);
if (rc != PLDM_SUCCESS)
{
diff --git a/pldmtool/pldm_bios_cmd.cpp b/pldmtool/pldm_bios_cmd.cpp
index d0cdeeb..1510617 100644
--- a/pldmtool/pldm_bios_cmd.cpp
+++ b/pldmtool/pldm_bios_cmd.cpp
@@ -895,7 +895,7 @@
entryLength =
pldm_bios_table_attr_value_entry_encode_integer_length();
attrValueEntry.resize(entryLength);
- int rc = pldm_bios_table_attr_value_entry_encode_integer_check(
+ int rc = pldm_bios_table_attr_value_entry_encode_integer(
attrValueEntry.data(), entryLength, attrEntry->attr_handle,
attrType, value);
if (rc != PLDM_SUCCESS)