summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8188eu
diff options
context:
space:
mode:
authorSreenath Madasu2015-07-09 00:43:00 +0200
committerGreg Kroah-Hartman2015-07-15 05:08:31 +0200
commit249472588cf0b5fa18063783dd1d4f4a62c8ddb3 (patch)
tree14b582bb0ee96bc4cdf4ebef0b5593f798dd94d2 /drivers/staging/rtl8188eu
parentstaging: rtl8188eu: core: rtw_mlme: remove space before ',' (diff)
downloadkernel-qcow2-linux-249472588cf0b5fa18063783dd1d4f4a62c8ddb3.tar.gz
kernel-qcow2-linux-249472588cf0b5fa18063783dd1d4f4a62c8ddb3.tar.xz
kernel-qcow2-linux-249472588cf0b5fa18063783dd1d4f4a62c8ddb3.zip
staging: rtl8188eu: core: Fixed 80 character length warning
When the checkpatch.pl script was run, it showed lines with length more than 80 characters in rtw_ap.c file. Fixed line number 382 by breaking it up into two lines within 80 characters. Signed-off-by: Sreenath Madasu <Sreenath.Madasu@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_ap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/rtl8188eu/core/rtw_ap.c b/drivers/staging/rtl8188eu/core/rtw_ap.c
index 9d484cf81184..5c45f8a8c2cf 100644
--- a/drivers/staging/rtl8188eu/core/rtw_ap.c
+++ b/drivers/staging/rtl8188eu/core/rtw_ap.c
@@ -379,7 +379,8 @@ void expire_timeout_chk(struct adapter *padapter)
if (pmlmeext->active_keep_alive_check) {
int stainfo_offset;
- stainfo_offset = rtw_stainfo_offset(pstapriv, psta);
+ stainfo_offset =
+ rtw_stainfo_offset(pstapriv, psta);
if (stainfo_offset_valid(stainfo_offset))
chk_alive_list[chk_alive_num++] = stainfo_offset;
continue;