bios_table: Remove pldm_bios_table_append_pad_checksum_check()
Deprecated prior to v0.9.0.
Change-Id: I8aac1c7d4cfeab795a05d0d3aa5acccd0bd7d905
Signed-off-by: Andrew Jeffery <andrew@codeconstruct.com.au>
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6410215..af9b811 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,6 +15,12 @@
- Fixed
- Security
+## [Unreleased]
+
+### Removed
+
+1. `pldm_bios_table_append_pad_checksum_check()`
+
## [0.9.1] - 2024-09-07
### Changed
diff --git a/abi/x86_64/gcc.dump b/abi/x86_64/gcc.dump
index 593516d..63aac92 100644
--- a/abi/x86_64/gcc.dump
+++ b/abi/x86_64/gcc.dump
@@ -1598,7 +1598,7 @@
},
'17310' => {
'Header' => 'bios_table.h',
- 'Line' => '670',
+ 'Line' => '668',
'Param' => {
'0' => {
'name' => 'table',
@@ -1618,7 +1618,7 @@
},
'17455' => {
'Header' => 'bios_table.h',
- 'Line' => '661',
+ 'Line' => '659',
'Param' => {
'0' => {
'name' => 'src_table',
@@ -9497,7 +9497,6 @@
'is_transfer_flag_valid' => 1,
'pack_pldm_header' => 1,
'pldm_bios_table_append_pad_checksum' => 1,
- 'pldm_bios_table_append_pad_checksum_check' => 1,
'pldm_bios_table_attr_entry_decode_attribute_handle' => 1,
'pldm_bios_table_attr_entry_decode_attribute_type' => 1,
'pldm_bios_table_attr_entry_decode_string_handle' => 1,
diff --git a/include/libpldm/bios_table.h b/include/libpldm/bios_table.h
index 07e3846..4244b5d 100644
--- a/include/libpldm/bios_table.h
+++ b/include/libpldm/bios_table.h
@@ -643,8 +643,6 @@
*/
int pldm_bios_table_append_pad_checksum(void *table, size_t capacity,
size_t *size);
-int pldm_bios_table_append_pad_checksum_check(void *table, size_t capacity,
- size_t *size);
/** @brief Build a new table and update an entry
* @param[in] src_table - Pointer to the source table
diff --git a/meson.build b/meson.build
index f5865be..b1a3a14 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_append_pad_checksum_check',
- 'pldm_bios_table_append_pad_checksum',
- ],
- [
'pldm_bios_table_attr_entry_enum_decode_def_num_check',
'pldm_bios_table_attr_entry_enum_decode_def_num',
],