diff options
author | Georgiana Chelu <georgiana.chelu93@gmail.com> | 2017-09-25 05:34:06 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-09-29 15:31:49 +0200 |
commit | 154acdb804f57929f5788011264940692aa9f89e (patch) | |
tree | 64650bf0224cbdf1e31e5482a5eda0adacd4e3b1 /drivers/staging/rtl8188eu | |
parent | 2742a7dddae45563deadbb712a19b0caba5fb296 (diff) | |
download | blackbird-op-linux-154acdb804f57929f5788011264940692aa9f89e.tar.gz blackbird-op-linux-154acdb804f57929f5788011264940692aa9f89e.zip |
Staging: rtl8188eu: core: Add spaces around '+'
Improve the coding style by adding spaces around
arithmetic operation.
Issue reported by checkpatch.pl script.
Signed-off-by: Georgiana Chelu <georgiana.chelu93@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8188eu')
-rw-r--r-- | drivers/staging/rtl8188eu/core/rtw_recv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8188eu/core/rtw_recv.c b/drivers/staging/rtl8188eu/core/rtw_recv.c index 3c764b847249..355a039c54f1 100644 --- a/drivers/staging/rtl8188eu/core/rtw_recv.c +++ b/drivers/staging/rtl8188eu/core/rtw_recv.c @@ -274,7 +274,7 @@ static int recvframe_chkmic(struct adapter *adapter, if (miccode[i] != *(pframemic+i)) { RT_TRACE(_module_rtl871x_recv_c_, _drv_err_, ("%s: miccode[%d](%02x)!=*(pframemic+%d)(%02x) ", - __func__, i, miccode[i], i, *(pframemic+i))); + __func__, i, miccode[i], i, *(pframemic + i))); bmic_err = true; } } |