Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 24947258 authored by Sreenath Madasu's avatar Sreenath Madasu Committed by Greg Kroah-Hartman
Browse files

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: default avatarSreenath Madasu <Sreenath.Madasu@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e1d0bced
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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;