bios_table: Remove pldm_bios_table_attr_value_entry_encode_integer_check()

Deprecated prior to v0.9.0.

gitlint-ignore: T1
Change-Id: I2b8e2c25cb65a63c439ca5dc46fad8fec2be9089
Signed-off-by: Andrew Jeffery <andrew@codeconstruct.com.au>
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c98d606..e2c4b31 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -30,6 +30,7 @@
    - `pldm_bios_table_attr_entry_string_decode_def_string_length_check()`
    - `pldm_bios_table_attr_entry_string_encode_check()`
    - `pldm_bios_table_attr_value_entry_encode_enum_check()`
+   - `pldm_bios_table_attr_value_entry_encode_integer_check()`
 
 ## [0.9.1] - 2024-09-07
 
diff --git a/abi/x86_64/gcc.dump b/abi/x86_64/gcc.dump
index 806fbdb..0e80abc 100644
--- a/abi/x86_64/gcc.dump
+++ b/abi/x86_64/gcc.dump
@@ -1598,7 +1598,7 @@
     },
     '17310' => {
       'Header' => 'bios_table.h',
-      'Line' => '646',
+      'Line' => '641',
       'Param' => {
         '0' => {
           'name' => 'table',
@@ -1618,7 +1618,7 @@
     },
     '17455' => {
       'Header' => 'bios_table.h',
-      'Line' => '637',
+      'Line' => '632',
       'Param' => {
         '0' => {
           'name' => 'src_table',
@@ -1654,7 +1654,7 @@
     },
     '18143' => {
       'Header' => 'bios_table.h',
-      'Line' => '603',
+      'Line' => '598',
       'Param' => {
         '0' => {
           'name' => 'table',
@@ -1847,7 +1847,7 @@
     },
     '20633' => {
       'Header' => 'bios_table.h',
-      'Line' => '622',
+      'Line' => '617',
       'Param' => {
         '0' => {
           'name' => 'table',
@@ -1872,7 +1872,7 @@
     },
     '20933' => {
       'Header' => 'bios_table.h',
-      'Line' => '610',
+      'Line' => '605',
       'Param' => {
         '0' => {
           'name' => 'size_without_pad',
@@ -1884,7 +1884,7 @@
     },
     '21288' => {
       'Header' => 'bios_table.h',
-      'Line' => '585',
+      'Line' => '580',
       'Param' => {
         '0' => {
           'name' => 'entry',
@@ -1899,7 +1899,7 @@
     },
     '21337' => {
       'Header' => 'bios_table.h',
-      'Line' => '592',
+      'Line' => '587',
       'Param' => {
         '0' => {
           'name' => 'entry',
@@ -9527,7 +9527,6 @@
       'pldm_bios_table_attr_value_entry_encode_enum' => 1,
       'pldm_bios_table_attr_value_entry_encode_enum_length' => 1,
       'pldm_bios_table_attr_value_entry_encode_integer' => 1,
-      'pldm_bios_table_attr_value_entry_encode_integer_check' => 1,
       'pldm_bios_table_attr_value_entry_encode_integer_length' => 1,
       'pldm_bios_table_attr_value_entry_encode_string' => 1,
       'pldm_bios_table_attr_value_entry_encode_string_check' => 1,
diff --git a/include/libpldm/bios_table.h b/include/libpldm/bios_table.h
index 75b3e57..7e518c8 100644
--- a/include/libpldm/bios_table.h
+++ b/include/libpldm/bios_table.h
@@ -572,11 +572,6 @@
 						    uint16_t attr_handle,
 						    uint8_t attr_type,
 						    uint64_t cv);
-int pldm_bios_table_attr_value_entry_encode_integer_check(void *entry,
-							  size_t entry_length,
-							  uint16_t attr_handle,
-							  uint8_t attr_type,
-							  uint64_t cv);
 
 /** @brief Get the handle from the attribute value entry
  *  @param[in] entry - Pointer to bios attribute value entry
diff --git a/meson.build b/meson.build
index d1e5a92..10f76d1 100644
--- a/meson.build
+++ b/meson.build
@@ -37,10 +37,6 @@
     libpldm_deprecated_aliases += [
         ['get_fru_record_by_option_check', 'get_fru_record_by_option'],
         [
-            'pldm_bios_table_attr_value_entry_encode_integer_check',
-            'pldm_bios_table_attr_value_entry_encode_integer',
-        ],
-        [
             'pldm_bios_table_attr_value_entry_encode_string_check',
             'pldm_bios_table_attr_value_entry_encode_string',
         ],