staging: rtl8188eu: cleanup long line in odm.c
Cleanup line over 80 characters by removing unnecessary test 'pDM_Odm->RSSI_Min <= 25'. The above test 'pDM_Odm->RSSI_Min > 25' already guarantees that it is <= 25. Signed-off-by: Michael Straube <straube.linux@gmail.com> Link: https://lore.kernel.org/r/20200326084348.15072-1-straube.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ecc11b42c7
commit
57e0ff116c
|
@ -590,7 +590,7 @@ void odm_CCKPacketDetectionThresh(struct odm_dm_struct *pDM_Odm)
|
|||
if (pDM_Odm->bLinked) {
|
||||
if (pDM_Odm->RSSI_Min > 25) {
|
||||
CurCCK_CCAThres = 0xcd;
|
||||
} else if ((pDM_Odm->RSSI_Min <= 25) && (pDM_Odm->RSSI_Min > 10)) {
|
||||
} else if (pDM_Odm->RSSI_Min > 10) {
|
||||
CurCCK_CCAThres = 0x83;
|
||||
} else {
|
||||
if (FalseAlmCnt->Cnt_Cck_fail > 1000)
|
||||
|
|
Loading…
Reference in New Issue