diff options
author | Quytelda Kahja <quytelda@tamalin.org> | 2018-03-27 04:41:01 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-03-29 05:59:28 -0400 |
commit | 79652e2c9bc40422ea044d08464b7f12f016c590 (patch) | |
tree | 145fd8c13c2d29735796635d80a0b90aa2e52be4 | |
parent | 86c0205ba20c4766dd28a7f5c34afdebccda22e2 (diff) |
staging: rtl8723bs: Fix alignment in rtw_wx_set_auth().
Realign the function parameters and comment blocks to match the kernel
coding style.
Signed-off-by: Quytelda Kahja <quytelda@tamalin.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/rtl8723bs/os_dep/ioctl_linux.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/rtl8723bs/os_dep/ioctl_linux.c b/drivers/staging/rtl8723bs/os_dep/ioctl_linux.c index 1cacd7fff052..32dcee9a1451 100644 --- a/drivers/staging/rtl8723bs/os_dep/ioctl_linux.c +++ b/drivers/staging/rtl8723bs/os_dep/ioctl_linux.c | |||
@@ -2131,8 +2131,8 @@ static int rtw_wx_set_gen_ie(struct net_device *dev, | |||
2131 | } | 2131 | } |
2132 | 2132 | ||
2133 | static int rtw_wx_set_auth(struct net_device *dev, | 2133 | static int rtw_wx_set_auth(struct net_device *dev, |
2134 | struct iw_request_info *info, | 2134 | struct iw_request_info *info, |
2135 | union iwreq_data *wrqu, char *extra) | 2135 | union iwreq_data *wrqu, char *extra) |
2136 | { | 2136 | { |
2137 | struct adapter *padapter = (struct adapter *)rtw_netdev_priv(dev); | 2137 | struct adapter *padapter = (struct adapter *)rtw_netdev_priv(dev); |
2138 | struct iw_param *param = (struct iw_param*)&(wrqu->param); | 2138 | struct iw_param *param = (struct iw_param*)&(wrqu->param); |
@@ -2189,7 +2189,7 @@ static int rtw_wx_set_auth(struct net_device *dev, | |||
2189 | case IW_AUTH_80211_AUTH_ALG: | 2189 | case IW_AUTH_80211_AUTH_ALG: |
2190 | /* | 2190 | /* |
2191 | * It's the starting point of a link layer connection using wpa_supplicant | 2191 | * It's the starting point of a link layer connection using wpa_supplicant |
2192 | */ | 2192 | */ |
2193 | if (check_fwstate(&padapter->mlmepriv, _FW_LINKED)) { | 2193 | if (check_fwstate(&padapter->mlmepriv, _FW_LINKED)) { |
2194 | LeaveAllPowerSaveMode(padapter); | 2194 | LeaveAllPowerSaveMode(padapter); |
2195 | rtw_disassoc_cmd(padapter, 500, false); | 2195 | rtw_disassoc_cmd(padapter, 500, false); |