lkml.org 
[lkml]   [2019]   [Mar]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [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@gmail.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.

\
 
 \ /
  Last update: 2019-03-27 23:33    [W:0.033 / U:1.216 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site