diff options
author | Colin Vidal <colin@cvidal.org> | 2016-02-17 01:12:17 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-02-21 02:06:51 +0300 |
commit | c3588214cbab692c6170b0e7327ebc86fc63141e (patch) | |
tree | 0aaba3794ca8a320c7b09384742348eca108eab0 /drivers/staging/rtl8188eu | |
parent | 7ca6a96340ea3759fe61d8c416b9db38334df5a7 (diff) | |
download | linux-c3588214cbab692c6170b0e7327ebc86fc63141e.tar.xz |
Staging: rtl8188eu/core: Coding style fix, set conform spaces between identifiers
And a space after include keyword, making the preprocessor more
readable, and remove an unexpected space between a type and variable
name.
Signed-off-by: Colin Vidal <colin@cvidal.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8188eu')
-rw-r--r-- | drivers/staging/rtl8188eu/core/rtw_iol.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8188eu/core/rtw_iol.c b/drivers/staging/rtl8188eu/core/rtw_iol.c index 000a81c06b65..7642c22b8b6f 100644 --- a/drivers/staging/rtl8188eu/core/rtw_iol.c +++ b/drivers/staging/rtl8188eu/core/rtw_iol.c @@ -14,9 +14,9 @@ * ******************************************************************************/ -#include<rtw_iol.h> +#include <rtw_iol.h> -bool rtw_IOL_applied(struct adapter *adapter) +bool rtw_IOL_applied(struct adapter *adapter) { if (1 == adapter->registrypriv.fw_iol) return true; |