diff options
author | Armin Schoenlieb <armetallica@gmail.com> | 2017-07-25 22:14:26 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-07-28 07:51:06 +0300 |
commit | c6117298b5c9d61adbbfa4230ee5ab9642b7f934 (patch) | |
tree | 7f004f2e76c7271df324e6a4e0d0822edc378a4b /drivers | |
parent | 00074ad33b7bc7aa840bc113ee4cee058c5fed70 (diff) | |
download | linux-c6117298b5c9d61adbbfa4230ee5ab9642b7f934.tar.xz |
Staging: rtl8188eu: core: fix brace coding style issue in rtw_mlme_ext.c
This is a patch to the rtw_mlme_ext.c file that fixes up a brace error
found by the checkpatch.pl tool
Signed-off-by: Armin Schoenlieb <armetallica@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/rtl8188eu/core/rtw_mlme_ext.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c b/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c index 88a3a2b9c144..aae8d716a513 100644 --- a/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c +++ b/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c @@ -3961,7 +3961,8 @@ static void init_mlme_ext_priv_value(struct adapter *padapter) static int has_channel(struct rt_channel_info *channel_set, u8 chanset_size, - u8 chan) { + u8 chan) +{ int i; for (i = 0; i < chanset_size; i++) { |