mirror of https://gitee.com/openkylin/linux.git
Staging: rtl8192e: Fix else is not useful style warning
This fixes the following checkpatch.pl warnings: 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
1f921b9f61
commit
59422a74b5
|
@ -917,12 +917,10 @@ static int rtllib_rx_check_duplicate(struct rtllib_device *ieee,
|
|||
if (GetTs(ieee, (struct ts_common_info **) &pRxTS, hdr->addr2,
|
||||
(u8)Frame_QoSTID((u8 *)(skb->data)), RX_DIR, true)) {
|
||||
if ((fc & (1<<11)) && (frag == pRxTS->RxLastFragNum) &&
|
||||
(WLAN_GET_SEQ_SEQ(sc) == pRxTS->RxLastSeqNum)) {
|
||||
(WLAN_GET_SEQ_SEQ(sc) == pRxTS->RxLastSeqNum))
|
||||
return -1;
|
||||
} else {
|
||||
pRxTS->RxLastFragNum = frag;
|
||||
pRxTS->RxLastSeqNum = WLAN_GET_SEQ_SEQ(sc);
|
||||
}
|
||||
pRxTS->RxLastFragNum = frag;
|
||||
pRxTS->RxLastSeqNum = WLAN_GET_SEQ_SEQ(sc);
|
||||
} else {
|
||||
RTLLIB_DEBUG(RTLLIB_DL_ERR, "ERR!!%s(): No TS!! Skip"
|
||||
" the check!!\n", __func__);
|
||||
|
|
Loading…
Reference in New Issue