mirror of https://gitee.com/openkylin/linux.git
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: Mahati Chamarthy <mahati.chamarthy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5110e40260
commit
13402f7b76
|
@ -281,8 +281,7 @@ static struct ts_common_info *SearchAdmitTRStream(struct rtllib_device *ieee,
|
|||
|
||||
if (pRet && &pRet->List != psearch_list)
|
||||
return pRet ;
|
||||
else
|
||||
return NULL;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static void MakeTSEntry(struct ts_common_info *pTsCommonInfo, u8 *Addr,
|
||||
|
|
Loading…
Reference in New Issue