On Tue, Oct 20, 2015 at 02:26:47PM +0900, Tony Cho wrote:
> This patch renames strInterfaceInfo in the struct wilc to the vif. In
> addition, unnecessary print statements around it are removed in this patch.
> 
> Signed-off-by: Tony Cho <tony....@atmel.com>
> ---
>  drivers/staging/wilc1000/linux_wlan.c             | 91 
> +++++++++++------------
>  drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 72 +++++++++---------
>  drivers/staging/wilc1000/wilc_wfi_netdevice.h     |  2 +-
>  3 files changed, 80 insertions(+), 85 deletions(-)
> 
> diff --git a/drivers/staging/wilc1000/linux_wlan.c 
> b/drivers/staging/wilc1000/linux_wlan.c
> index 2bea103..971b99a 100644
> --- a/drivers/staging/wilc1000/linux_wlan.c
> +++ b/drivers/staging/wilc1000/linux_wlan.c
> @@ -366,24 +366,21 @@ struct net_device *GetIfHandler(u8 *pMacHeader)
>       Bssid  = pMacHeader + 10;
>       Bssid1 = pMacHeader + 4;
>  
> -     for (i = 0; i < g_linux_wlan->vif_num; i++) {
> -             if (!memcmp(Bssid1, g_linux_wlan->strInterfaceInfo[i].aBSSID, 
> ETH_ALEN) ||
> -                 !memcmp(Bssid, g_linux_wlan->strInterfaceInfo[i].aBSSID, 
> ETH_ALEN)) {
> -                     return g_linux_wlan->strInterfaceInfo[i].wilc_netdev;
> -             }
> -     }
> +     for (i = 0; i < g_linux_wlan->vif_num; i++)
> +             if (!memcmp(Bssid1, g_linux_wlan->vif[i].aBSSID, ETH_ALEN) ||
> +                 !memcmp(Bssid, g_linux_wlan->vif[i].aBSSID, ETH_ALEN))
> +                     return g_linux_wlan->vif[i].wilc_netdev;
> +

Removing the curly braces was wrong.  Multi-line indents get curly
braces for readability even though the compiler does not insist on them.

regards,
dan carpenter

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to