diff mbox series

[BlueZ,4/4] mesh: Remove redundant call to save node configuration

Message ID 20200509000024.5704-5-inga.stotland@intel.com (mailing list archive)
State Accepted
Headers show
Series Allow some composition fields update | expand

Commit Message

Stotland, Inga May 9, 2020, midnight UTC
This removes a redundant call to save node configuration in
add_local_node(): there is a number of unconditional calls to
mesh_config_write_<some_node_Setting>() within this function
which would result in the node configuration being saved implicitly.
---
 mesh/node.c | 2 --
 1 file changed, 2 deletions(-)
diff mbox series

Patch

diff --git a/mesh/node.c b/mesh/node.c
index a96c0cae1..8914b639d 100644
--- a/mesh/node.c
+++ b/mesh/node.c
@@ -1366,8 +1366,6 @@  static bool add_local_node(struct mesh_node *node, uint16_t unicast, bool kr,
 
 	update_net_settings(node);
 
-	mesh_config_save(node->cfg, true, NULL, NULL);
-
 	/* Initialize configuration server model */
 	cfgmod_server_init(node, PRIMARY_ELE_IDX);