[3/3] batman-adv: Remove unused variable

Message ID 20091231034120.GC18781@Sellars (mailing list archive)
State Accepted, archived
Commit a1715bd01d770a4f79c92315b1636befe8a0949b
Headers

Commit Message

Linus Lüssing Dec. 31, 2009, 3:41 a.m. UTC
  The variable 'flag' is never being used in this function, therefore
removing it.

Signed-off-by: Linus Lüssing <linus.luessing@web.de>
---
 soft-interface.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)
  

Comments

Simon Wunderlich Jan. 1, 2010, 4:40 p.m. UTC | #1
Hey Linus,

sorry, i have not seen your patch and checked this in myself (r1525). Thanks 
for reporting it anyway. :)

best regards,
	Simon

On Thu, Dec 31, 2009 at 04:41:20AM +0100, =?UTF-8?q?Linus=20L=C3=BCssing?= wrote:
> The variable 'flag' is never being used in this function, therefore
> removing it.
> 
> Signed-off-by: Linus Lüssing <linus.luessing@web.de>
> ---
>  soft-interface.c |    1 -
>  1 files changed, 0 insertions(+), 1 deletions(-)
> 
> diff --git a/soft-interface.c b/soft-interface.c
> index 4d4d542..bc0217b 100644
> --- a/soft-interface.c
> +++ b/soft-interface.c
> @@ -148,7 +148,6 @@ struct net_device_stats *interface_stats(struct net_device *dev)
>  int interface_set_mac_addr(struct net_device *dev, void *p)
>  {
>  	struct sockaddr *addr = p;
> -	unsigned long flags;
>  
>  	if (!is_valid_ether_addr(addr->sa_data))
>  		return -EADDRNOTAVAIL;
> -- 
> 1.6.5.7
> 
> _______________________________________________
> B.A.T.M.A.N mailing list
> B.A.T.M.A.N@lists.open-mesh.net
> https://lists.open-mesh.net/mm/listinfo/b.a.t.m.a.n
  

Patch

diff --git a/soft-interface.c b/soft-interface.c
index 4d4d542..bc0217b 100644
--- a/soft-interface.c
+++ b/soft-interface.c
@@ -148,7 +148,6 @@  struct net_device_stats *interface_stats(struct net_device *dev)
 int interface_set_mac_addr(struct net_device *dev, void *p)
 {
 	struct sockaddr *addr = p;
-	unsigned long flags;
 
 	if (!is_valid_ether_addr(addr->sa_data))
 		return -EADDRNOTAVAIL;