mesh: Remove unused timing variable tx_start
authorInga Stotland <inga.stotland@intel.com>
Thu, 3 Sep 2020 19:02:05 +0000 (12:02 -0700)
committerAbhay Agarwal <ay.agarwal@samsung.com>
Mon, 28 Dec 2020 06:20:04 +0000 (11:50 +0530)
In model.c, tx_Start is a static variable, dynamically set, but
never used. Is removed now.

Change-Id: I668c9c9c941ccc6c37a6f26c3e7994eb5765bf44
Signed-off-by: anuj.bhumiya <anuj.bhumiya@samsung.com>
mesh/model.c

index ed2a752..5716f5e 100644 (file)
@@ -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;