pdr: Remove pldm_entity_association_pdr_add_check()
Deprecated prior to v0.9.0.
Change-Id: I7706f27c732efbb3332d26fe4e7f0be1c205c66b
Signed-off-by: Andrew Jeffery <andrew@codeconstruct.com.au>
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 013bb55..c18350f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -34,6 +34,7 @@
- `pldm_bios_table_attr_value_entry_encode_string_check()`
- `pldm_bios_table_string_entry_decode_string_check()`
- `pldm_bios_table_string_entry_encode_check()`
+ - `pldm_entity_association_pdr_add_check()`
## [0.9.1] - 2024-09-07
diff --git a/abi/x86_64/gcc.dump b/abi/x86_64/gcc.dump
index 0f78be9..c6010dd 100644
--- a/abi/x86_64/gcc.dump
+++ b/abi/x86_64/gcc.dump
@@ -4358,7 +4358,7 @@
},
'76846' => {
'Header' => 'pdr.h',
- 'Line' => '639',
+ 'Line' => '636',
'Param' => {
'0' => {
'name' => 'pdr',
@@ -4386,7 +4386,7 @@
},
'77174' => {
'Header' => 'pdr.h',
- 'Line' => '627',
+ 'Line' => '624',
'Param' => {
'0' => {
'name' => 'tree',
@@ -4401,7 +4401,7 @@
},
'77228' => {
'Header' => 'pdr.h',
- 'Line' => '617',
+ 'Line' => '614',
'Param' => {
'0' => {
'name' => 'tree',
@@ -4416,7 +4416,7 @@
},
'77291' => {
'Header' => 'pdr.h',
- 'Line' => '607',
+ 'Line' => '604',
'Param' => {
'0' => {
'name' => 'org_tree',
@@ -4432,7 +4432,7 @@
},
'77675' => {
'Header' => 'pdr.h',
- 'Line' => '581',
+ 'Line' => '578',
'Param' => {
'0' => {
'name' => 'tree',
@@ -4448,7 +4448,7 @@
},
'77955' => {
'Header' => 'pdr.h',
- 'Line' => '595',
+ 'Line' => '592',
'Param' => {
'0' => {
'name' => 'tree',
@@ -4527,7 +4527,7 @@
},
'78980' => {
'Header' => 'pdr.h',
- 'Line' => '542',
+ 'Line' => '539',
'Param' => {
'0' => {
'name' => 'tree',
@@ -4547,7 +4547,7 @@
},
'79267' => {
'Header' => 'pdr.h',
- 'Line' => '531',
+ 'Line' => '528',
'Param' => {
'0' => {
'name' => 'node',
@@ -4592,7 +4592,7 @@
},
'79500' => {
'Header' => 'pdr.h',
- 'Line' => '511',
+ 'Line' => '508',
'Param' => {
'0' => {
'name' => 'node',
@@ -4648,7 +4648,7 @@
},
'81241' => {
'Header' => 'pdr.h',
- 'Line' => '568',
+ 'Line' => '565',
'Param' => {
'0' => {
'name' => 'parent',
@@ -4668,7 +4668,7 @@
},
'81330' => {
'Header' => 'pdr.h',
- 'Line' => '554',
+ 'Line' => '551',
'Param' => {
'0' => {
'name' => 'node',
@@ -9553,7 +9553,6 @@
'pldm_bios_table_string_find_by_string' => 1,
'pldm_close' => 1,
'pldm_entity_association_pdr_add' => 1,
- 'pldm_entity_association_pdr_add_check' => 1,
'pldm_entity_association_pdr_add_from_node' => 1,
'pldm_entity_association_pdr_add_from_node_check' => 1,
'pldm_entity_association_pdr_add_from_node_with_record_handle' => 1,
diff --git a/include/libpldm/pdr.h b/include/libpldm/pdr.h
index c88df4c..8149396 100644
--- a/include/libpldm/pdr.h
+++ b/include/libpldm/pdr.h
@@ -459,9 +459,6 @@
int pldm_entity_association_pdr_add(pldm_entity_association_tree *tree,
pldm_pdr *repo, bool is_remote,
uint16_t terminus_handle);
-int pldm_entity_association_pdr_add_check(pldm_entity_association_tree *tree,
- pldm_pdr *repo, bool is_remote,
- uint16_t terminus_handle);
/** @brief Add a contained entity as a remote PDR to an existing entity association PDR.
*
diff --git a/meson.build b/meson.build
index eb77497..6845cbf 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_entity_association_pdr_add_check',
- 'pldm_entity_association_pdr_add',
- ],
- [
'pldm_entity_association_pdr_add_from_node_check',
'pldm_entity_association_pdr_add_from_node',
],