pdr: Remove pldm_entity_association_pdr_add_from_node_check()
Deprecated prior to v0.9.0.
Change-Id: Ibe52bb1c7c26314a9c91c40917d378d6bb851447
Signed-off-by: Andrew Jeffery <andrew@codeconstruct.com.au>
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c18350f..aec02b0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -35,6 +35,7 @@
- `pldm_bios_table_string_entry_decode_string_check()`
- `pldm_bios_table_string_entry_encode_check()`
- `pldm_entity_association_pdr_add_check()`
+ - `pldm_entity_association_pdr_add_from_node_check()`
## [0.9.1] - 2024-09-07
diff --git a/abi/x86_64/gcc.dump b/abi/x86_64/gcc.dump
index c6010dd..56b19f2 100644
--- a/abi/x86_64/gcc.dump
+++ b/abi/x86_64/gcc.dump
@@ -4358,7 +4358,7 @@
},
'76846' => {
'Header' => 'pdr.h',
- 'Line' => '636',
+ 'Line' => '633',
'Param' => {
'0' => {
'name' => 'pdr',
@@ -4386,7 +4386,7 @@
},
'77174' => {
'Header' => 'pdr.h',
- 'Line' => '624',
+ 'Line' => '621',
'Param' => {
'0' => {
'name' => 'tree',
@@ -4401,7 +4401,7 @@
},
'77228' => {
'Header' => 'pdr.h',
- 'Line' => '614',
+ 'Line' => '611',
'Param' => {
'0' => {
'name' => 'tree',
@@ -4416,7 +4416,7 @@
},
'77291' => {
'Header' => 'pdr.h',
- 'Line' => '604',
+ 'Line' => '601',
'Param' => {
'0' => {
'name' => 'org_tree',
@@ -4432,7 +4432,7 @@
},
'77675' => {
'Header' => 'pdr.h',
- 'Line' => '578',
+ 'Line' => '575',
'Param' => {
'0' => {
'name' => 'tree',
@@ -4448,7 +4448,7 @@
},
'77955' => {
'Header' => 'pdr.h',
- 'Line' => '592',
+ 'Line' => '589',
'Param' => {
'0' => {
'name' => 'tree',
@@ -4527,7 +4527,7 @@
},
'78980' => {
'Header' => 'pdr.h',
- 'Line' => '539',
+ 'Line' => '536',
'Param' => {
'0' => {
'name' => 'tree',
@@ -4547,7 +4547,7 @@
},
'79267' => {
'Header' => 'pdr.h',
- 'Line' => '528',
+ 'Line' => '525',
'Param' => {
'0' => {
'name' => 'node',
@@ -4648,7 +4648,7 @@
},
'81241' => {
'Header' => 'pdr.h',
- 'Line' => '565',
+ 'Line' => '562',
'Param' => {
'0' => {
'name' => 'parent',
@@ -4668,7 +4668,7 @@
},
'81330' => {
'Header' => 'pdr.h',
- 'Line' => '551',
+ 'Line' => '548',
'Param' => {
'0' => {
'name' => 'node',
@@ -9554,7 +9554,6 @@
'pldm_close' => 1,
'pldm_entity_association_pdr_add' => 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,
'pldm_entity_association_pdr_extract' => 1,
'pldm_entity_association_tree_add' => 1,
diff --git a/include/libpldm/pdr.h b/include/libpldm/pdr.h
index 8149396..097eb83 100644
--- a/include/libpldm/pdr.h
+++ b/include/libpldm/pdr.h
@@ -508,9 +508,6 @@
int pldm_entity_association_pdr_add_from_node(
pldm_entity_node *node, pldm_pdr *repo, pldm_entity **entities,
size_t num_entities, bool is_remote, uint16_t terminus_handle);
-int pldm_entity_association_pdr_add_from_node_check(
- pldm_entity_node *node, pldm_pdr *repo, pldm_entity **entities,
- size_t num_entities, bool is_remote, uint16_t terminus_handle);
/** @brief Add entity association pdr record based on record handle
* earlier the records where added in a sequential way alone, with
diff --git a/meson.build b/meson.build
index 6845cbf..3187c8a 100644
--- a/meson.build
+++ b/meson.build
@@ -36,10 +36,6 @@
add_project_arguments('-DLIBPLDM_API_DEPRECATED', language: ['c', 'cpp'])
libpldm_deprecated_aliases += [
['get_fru_record_by_option_check', 'get_fru_record_by_option'],
- [
- 'pldm_entity_association_pdr_add_from_node_check',
- 'pldm_entity_association_pdr_add_from_node',
- ],
['pldm_pdr_add_check', 'pldm_pdr_add'],
['pldm_pdr_add_fru_record_set_check', 'pldm_pdr_add_fru_record_set'],
]