pldm: Move off pldm_bios_table_attr_entry_string_decode_def_string_length_check()

Generated with:

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

gitlint-ignore: T1,B1
Change-Id: Ib7b44820870da32109981c8a8d44657214cf1d61
Signed-off-by: Andrew Jeffery <andrew@codeconstruct.com.au>
diff --git a/libpldmresponder/bios_config.cpp b/libpldmresponder/bios_config.cpp
index b66e12a..712555d 100644
--- a/libpldmresponder/bios_config.cpp
+++ b/libpldmresponder/bios_config.cpp
@@ -465,7 +465,7 @@
                     attrEntry);
                 uint16_t def;
                 // Preconditions are upheld therefore no error check necessary
-                pldm_bios_table_attr_entry_string_decode_def_string_length_check(
+                pldm_bios_table_attr_entry_string_decode_def_string_length(
                     attrEntry, &def);
                 std::vector<char> defString(def + 1);
                 pldm_bios_table_attr_entry_string_decode_def_string(
diff --git a/libpldmresponder/bios_table.cpp b/libpldmresponder/bios_table.cpp
index f425b29..b627275 100644
--- a/libpldmresponder/bios_table.cpp
+++ b/libpldmresponder/bios_table.cpp
@@ -193,7 +193,7 @@
     auto minLength = pldm_bios_table_attr_entry_string_decode_min_length(entry);
     auto maxLength = pldm_bios_table_attr_entry_string_decode_max_length(entry);
     uint16_t defLength;
-    int rc = pldm_bios_table_attr_entry_string_decode_def_string_length_check(
+    int rc = pldm_bios_table_attr_entry_string_decode_def_string_length(
         entry, &defLength);
     if (rc != PLDM_SUCCESS)
     {
diff --git a/pldmtool/pldm_bios_cmd.cpp b/pldmtool/pldm_bios_cmd.cpp
index b096591..fb461d3 100644
--- a/pldmtool/pldm_bios_cmd.cpp
+++ b/pldmtool/pldm_bios_cmd.cpp
@@ -621,7 +621,7 @@
                     uint16_t def;
                     // Preconditions are upheld therefore no error check
                     // necessary
-                    pldm_bios_table_attr_entry_string_decode_def_string_length_check(
+                    pldm_bios_table_attr_entry_string_decode_def_string_length(
                         entry, &def);
                     std::vector<char> defString(def + 1);
                     pldm_bios_table_attr_entry_string_decode_def_string(