lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Wed, 27 Mar 2019 15:35:45 -0700
From:   Julius Hemanth P <juliushemanth@...il.com>
To:     gregkh@...uxfoundation.org, johnfwhitmore@...il.com
Cc:     devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
        juliushemanth@...il.com
Subject: Re: [PATCH] staging: rtl8192u: ieee80211: ieee80211_wx: add space
 before open brace

On Wed, Mar 27, 2019 at 02:53:35PM -0700, Julius Hemanth Pitti wrote:
> Fix checkpatch error "ERROR: that open brace { should be on
> the previous line" in ieee80211_wx.c.
> 
> Signed-off-by: Julius Hemanth Pitti <juliushemanth@...il.com>
> ---
>  drivers/staging/rtl8192u/ieee80211/ieee80211_wx.c | 12 +++++-------
>  1 file changed, 5 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/staging/rtl8192u/ieee80211/ieee80211_wx.c b/drivers/staging/rtl8192u/ieee80211/ieee80211_wx.c
> index fa59c71..ebcc642 100644
> --- a/drivers/staging/rtl8192u/ieee80211/ieee80211_wx.c
> +++ b/drivers/staging/rtl8192u/ieee80211/ieee80211_wx.c
> @@ -195,7 +195,7 @@ static inline char *rtl819x_translate_scan(struct ieee80211_device *ieee,
>  	if (iwe.u.data.length)
>  	    start = iwe_stream_add_point(info, start, stop, &iwe, custom);
>  
> -	if (ieee->wpa_enabled && network->wpa_ie_len){
> +	if (ieee->wpa_enabled && network->wpa_ie_len) {
>  		char buf[MAX_WPA_IE_LEN * 2 + 30];
>  	//	printk("WPA IE\n");
>  		u8 *p = buf;
> @@ -210,7 +210,7 @@ static inline char *rtl819x_translate_scan(struct ieee80211_device *ieee,
>  		start = iwe_stream_add_point(info, start, stop, &iwe, buf);
>  	}
>  
> -	if (ieee->wpa_enabled && network->rsn_ie_len){
> +	if (ieee->wpa_enabled && network->rsn_ie_len) {
>  		char buf[MAX_WPA_IE_LEN * 2 + 30];
>  
>  		u8 *p = buf;
> @@ -766,15 +766,13 @@ int ieee80211_wx_set_auth(struct ieee80211_device *ieee,
>  	case IW_AUTH_80211_AUTH_ALG:
>  		//printk("======>%s():data->value is %d\n",__func__,data->value);
>  	//	ieee->open_wep = (data->value&IW_AUTH_ALG_OPEN_SYSTEM)?1:0;
> -		if(data->value & IW_AUTH_ALG_SHARED_KEY){
> +		if (data->value & IW_AUTH_ALG_SHARED_KEY) {
>  			ieee->open_wep = 0;
>  			ieee->auth_mode = 1;
> -		}
> -		else if(data->value & IW_AUTH_ALG_OPEN_SYSTEM){
> +		} else if (data->value & IW_AUTH_ALG_OPEN_SYSTEM) {
>  			ieee->open_wep = 1;
>  			ieee->auth_mode = 0;
> -		}
> -		else if(data->value & IW_AUTH_ALG_LEAP){
> +		} else if (data->value & IW_AUTH_ALG_LEAP) {
>  			ieee->open_wep = 1;
>  			ieee->auth_mode = 2;
>  		}
> -- 
> 2.7.4
>
Sorry for typo in commit message, please ignore this patch.
Will send updated one as v2.

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ