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

Commit 13402f7b authored by Mahati Chamarthy's avatar Mahati Chamarthy Committed by Greg Kroah-Hartman
Browse files

Staging: rtl8192e: Fix else is not useful warning



This fixes the following checkpatch.pl warning:
WARNING: else is not generally useful after a break or return

Signed-off-by: default avatarMahati Chamarthy <mahati.chamarthy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5110e402
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -281,7 +281,6 @@ static struct ts_common_info *SearchAdmitTRStream(struct rtllib_device *ieee,

	if (pRet && &pRet->List  != psearch_list)
		return pRet ;
	else
	return NULL;
}