[patch -next] libertas: handle mesh networks in lbs_iface_active()

Dan Williams dcbw at redhat.com
Mon Aug 15 18:52:29 EDT 2011


On Mon, 2011-08-15 at 14:25 +0300, Dan Carpenter wrote:
> There was an extra semicolon so the if condition wasn't used.  We
> checked "priv->dev" twice instead of "priv->mesh_dev".
> 
> Signed-off-by: Dan Carpenter <error27 at gmail.com>

Acked-by: Dan Williams <dcbw at redhat.com>

> ---
> Compile tested only.
> 
> diff --git a/drivers/net/wireless/libertas/dev.h b/drivers/net/wireless/libertas/dev.h
> index 8148389..b9ff0dc 100644
> --- a/drivers/net/wireless/libertas/dev.h
> +++ b/drivers/net/wireless/libertas/dev.h
> @@ -190,8 +190,8 @@ static inline int lbs_iface_active(struct lbs_private *priv)
>  	int r;
>  
>  	r = netif_running(priv->dev);
> -	if (priv->mesh_dev);
> -		r |= netif_running(priv->dev);
> +	if (priv->mesh_dev)
> +		r |= netif_running(priv->mesh_dev);
>  
>  	return r;
>  }





More information about the libertas-dev mailing list