staging: rtl8723au: Do not use comparisons on bool tests
This patch removes unnecessary comparisons to bool. It fixes the following warning detected using coccinelle tool: WARNING: Comparison to bool. Signed-off-by: Roberta Dobrescu <roberta.dobrescu@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
de1de2f68b
commit
08551cbb17
@ -1605,7 +1605,7 @@ u8 ap_free_sta23a(struct rtw_adapter *padapter, struct sta_info *psta, bool acti
|
||||
if (!psta)
|
||||
return beacon_updated;
|
||||
|
||||
if (active == true) {
|
||||
if (active) {
|
||||
/* tear down Rx AMPDU */
|
||||
send_delba23a(padapter, 0, psta->hwaddr);/* recipient */
|
||||
|
||||
|
@ -1149,7 +1149,7 @@ static void rtw_chk_hi_queue_hdl(struct rtw_adapter *padapter)
|
||||
|
||||
val = rtl8723a_chk_hi_queue_empty(padapter);
|
||||
|
||||
while (val == false) {
|
||||
while (!val) {
|
||||
msleep(100);
|
||||
|
||||
cnt++;
|
||||
|
@ -1121,7 +1121,7 @@ void rtw_joinbss_event_prehandle23a(struct rtw_adapter *adapter, u8 *pbuf)
|
||||
if (check_fwstate(pmlmepriv, _FW_UNDER_LINKING)) {
|
||||
/* s1. find ptarget_wlan */
|
||||
if (check_fwstate(pmlmepriv, _FW_LINKED)) {
|
||||
if (the_same_macaddr == true) {
|
||||
if (the_same_macaddr) {
|
||||
ptarget_wlan = rtw_find_network23a(&pmlmepriv->scanned_queue, cur_network->network.MacAddress);
|
||||
} else {
|
||||
pcur_wlan = rtw_find_network23a(&pmlmepriv->scanned_queue, cur_network->network.MacAddress);
|
||||
|
@ -3999,7 +3999,7 @@ int send_beacon23a(struct rtw_adapter *padapter)
|
||||
yield();
|
||||
bxmitok = rtl8723a_get_bcn_valid(padapter);
|
||||
poll++;
|
||||
} while ((poll % 10) != 0 && bxmitok == false &&
|
||||
} while ((poll % 10) != 0 && !bxmitok &&
|
||||
!padapter->bSurpriseRemoved &&
|
||||
!padapter->bDriverStopped);
|
||||
|
||||
|
@ -159,7 +159,7 @@ void rtw_ps_processor23a(struct rtw_adapter *padapter)
|
||||
if (pwrpriv->ips_mode_req == IPS_NONE)
|
||||
goto exit;
|
||||
|
||||
if (rtw_pwr_unassociated_idle(padapter) == false)
|
||||
if (!rtw_pwr_unassociated_idle(padapter))
|
||||
goto exit;
|
||||
|
||||
if (pwrpriv->rf_pwrstate == rf_on &&
|
||||
|
@ -866,7 +866,7 @@ int rtw_check_bcn_info23a(struct rtw_adapter *Adapter,
|
||||
int pie_len, ssid_len, privacy;
|
||||
const u8 *p, *ssid;
|
||||
|
||||
if (is_client_associated_to_ap23a(Adapter) == false)
|
||||
if (!is_client_associated_to_ap23a(Adapter))
|
||||
return _SUCCESS;
|
||||
|
||||
if (unlikely(!ieee80211_is_beacon(mgmt->frame_control))) {
|
||||
|
@ -612,7 +612,7 @@ static void _PHY_PathADDAOn(struct rtw_adapter *pAdapter, u32 *ADDAReg, bool isP
|
||||
u32 i;
|
||||
|
||||
pathOn = isPathAOn ? 0x04db25a4 : 0x0b1b25a4;
|
||||
if (false == is2T) {
|
||||
if (!is2T) {
|
||||
pathOn = 0x0bdb25a0;
|
||||
PHY_SetBBReg(pAdapter, ADDAReg[0], bMaskDWord, 0x0b1b25a0);
|
||||
} else {
|
||||
|
@ -1945,13 +1945,13 @@ Hal_EfuseParseThermalMeter_8723A(struct rtw_adapter *padapter,
|
||||
/* */
|
||||
/* ThermalMeter from EEPROM */
|
||||
/* */
|
||||
if (AutoloadFail == false)
|
||||
if (!AutoloadFail)
|
||||
pHalData->EEPROMThermalMeter =
|
||||
PROMContent[EEPROM_THERMAL_METER_8723A];
|
||||
else
|
||||
pHalData->EEPROMThermalMeter = EEPROM_Default_ThermalMeter;
|
||||
|
||||
if ((pHalData->EEPROMThermalMeter == 0xff) || (AutoloadFail == true)) {
|
||||
if ((pHalData->EEPROMThermalMeter == 0xff) || AutoloadFail) {
|
||||
pHalData->bAPKThermalMeterIgnore = true;
|
||||
pHalData->EEPROMThermalMeter = EEPROM_Default_ThermalMeter;
|
||||
}
|
||||
|
@ -480,7 +480,7 @@ static void _InitRFType(struct rtw_adapter *Adapter)
|
||||
|
||||
pHalData->rf_chip = RF_6052;
|
||||
|
||||
if (is92CU == false) {
|
||||
if (!is92CU) {
|
||||
pHalData->rf_type = RF_1T1R;
|
||||
DBG_8723A("Set RF Chip ID to RF_6052 and RF type to 1T1R.\n");
|
||||
return;
|
||||
|
@ -270,7 +270,7 @@ static inline void _clr_fwstate_(struct mlme_priv *pmlmepriv, int state)
|
||||
static inline void clr_fwstate(struct mlme_priv *pmlmepriv, int state)
|
||||
{
|
||||
spin_lock_bh(&pmlmepriv->lock);
|
||||
if (check_fwstate(pmlmepriv, state) == true)
|
||||
if (check_fwstate(pmlmepriv, state))
|
||||
pmlmepriv->fw_state ^= state;
|
||||
spin_unlock_bh(&pmlmepriv->lock);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user