From 06e0aee843d757f674b5548b2ba72dda5542dc8f Mon Sep 17 00:00:00 2001 From: Inga Stotland Date: Fri, 8 May 2020 17:00:24 -0700 Subject: [PATCH] mesh: Remove redundant call to save node configuration This removes a redundant call to save node configuration in add_local_node(): there is a number of unconditional calls to mesh_config_write_() within this function which would result in the node configuration being saved implicitly. Change-Id: I6ffb8eea7f627c734c2728940f9a24223ad19e8c Signed-off-by: Abhay Agarwal --- mesh/node.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/mesh/node.c b/mesh/node.c index b89db61..eec163d 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); -- 2.7.4