diff mbox series

[BlueZ] mesh: Remove unused timing variable tx_start

Message ID 20200903190205.9439-1-inga.stotland@intel.com (mailing list archive)
State Accepted
Headers show
Series [BlueZ] mesh: Remove unused timing variable tx_start | expand

Commit Message

Stotland, Inga Sept. 3, 2020, 7:02 p.m. UTC
In model.c, tx_Start is a static variable, dynamically set, but
never used. Is removed now.
---
 mesh/model.c | 6 ------
 1 file changed, 6 deletions(-)

Comments

Brian Gix Sept. 3, 2020, 8:27 p.m. UTC | #1
Applied
On Thu, 2020-09-03 at 12:02 -0700, Inga Stotland wrote:
> In model.c, tx_Start is a static variable, dynamically set, but
> never used. Is removed now.
> ---
>  mesh/model.c | 6 ------
>  1 file changed, 6 deletions(-)
> 
> diff --git a/mesh/model.c b/mesh/model.c
> index ed2a75215..5716f5e22 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;
>
diff mbox series

Patch

diff --git a/mesh/model.c b/mesh/model.c
index ed2a75215..5716f5e22 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;