Diff between c24db50c4368dfd1ea868cbc9f9976a99a365068 and b6b5142239b584c836b448bb73e2b705734f70b1

Changed Files

File Additions Deletions Status
mesh/model.c +0 -6 modified

Full Patch

diff --git a/mesh/model.c b/mesh/model.c
index ed2a752..5716f5e 100644
--- a/mesh/model.c
+++ b/mesh/model.c
@@ -80,8 +80,6 @@ struct mod_forward {
 
 static struct l_queue *mesh_virtuals;
 
-static struct timeval tx_start;
-
 static bool is_internal(uint32_t id)
 {
 	if (id == CONFIG_SRV_MODEL || id == CONFIG_CLI_MODEL)
@@ -1018,8 +1016,6 @@ int mesh_model_publish(struct mesh_node *node, uint32_t id, uint16_t src,
 		return MESH_ERROR_DOES_NOT_EXIST;
 	}
 
-	gettimeofday(&tx_start, NULL);
-
 	if (IS_UNASSIGNED(mod->pub->addr))
 		return MESH_ERROR_DOES_NOT_EXIST;
 
@@ -1049,8 +1045,6 @@ bool mesh_model_send(struct mesh_node *node, uint16_t src, uint16_t dst,
 	if (src == 0)
 		src = node_get_primary(node);
 
-	gettimeofday(&tx_start, NULL);
-
 	if (IS_UNASSIGNED(dst))
 		return false;