Commit 7036126a authored by Hariprasad Kelam's avatar Hariprasad Kelam Committed by Greg Kroah-Hartman

staging: rtl8723bs: hal: rtl8723b_hal_init: fix Using comparison to true is error prone

This patch tries to fix below issues reported by checkpatch

CHECK: Using comparison to true is error prone
CHECK: Using comparison to true is false prone
Signed-off-by: default avatarHariprasad Kelam <hariprasad.kelam@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 02ca9aa0
...@@ -742,7 +742,7 @@ static void Hal_BT_EfusePowerSwitch( ...@@ -742,7 +742,7 @@ static void Hal_BT_EfusePowerSwitch(
) )
{ {
u8 tempval; u8 tempval;
if (PwrState == true) { if (PwrState) {
/* enable BT power cut */ /* enable BT power cut */
/* 0x6A[14] = 1 */ /* 0x6A[14] = 1 */
tempval = rtw_read8(padapter, 0x6B); tempval = rtw_read8(padapter, 0x6B);
...@@ -783,7 +783,7 @@ static void Hal_EfusePowerSwitch( ...@@ -783,7 +783,7 @@ static void Hal_EfusePowerSwitch(
u16 tmpV16; u16 tmpV16;
if (PwrState == true) { if (PwrState) {
/* To avoid cannot access efuse regsiters after disable/enable several times during DTM test. */ /* To avoid cannot access efuse regsiters after disable/enable several times during DTM test. */
/* Suggested by SD1 IsaacHsu. 2013.07.08, added by tynli. */ /* Suggested by SD1 IsaacHsu. 2013.07.08, added by tynli. */
tempval = rtw_read8(padapter, SDIO_LOCAL_BASE|SDIO_REG_HSUS_CTRL); tempval = rtw_read8(padapter, SDIO_LOCAL_BASE|SDIO_REG_HSUS_CTRL);
...@@ -833,7 +833,7 @@ static void Hal_EfusePowerSwitch( ...@@ -833,7 +833,7 @@ static void Hal_EfusePowerSwitch(
rtw_write16(padapter, REG_SYS_CLKR, tmpV16); rtw_write16(padapter, REG_SYS_CLKR, tmpV16);
} }
if (bWrite == true) { if (bWrite) {
/* Enable LDO 2.5V before read/write action */ /* Enable LDO 2.5V before read/write action */
tempval = rtw_read8(padapter, EFUSE_TEST+3); tempval = rtw_read8(padapter, EFUSE_TEST+3);
tempval &= 0x0F; tempval &= 0x0F;
...@@ -845,7 +845,7 @@ static void Hal_EfusePowerSwitch( ...@@ -845,7 +845,7 @@ static void Hal_EfusePowerSwitch(
} else { } else {
rtw_write8(padapter, REG_EFUSE_ACCESS, EFUSE_ACCESS_OFF); rtw_write8(padapter, REG_EFUSE_ACCESS, EFUSE_ACCESS_OFF);
if (bWrite == true) { if (bWrite) {
/* Disable LDO 2.5V after read/write action */ /* Disable LDO 2.5V after read/write action */
tempval = rtw_read8(padapter, EFUSE_TEST+3); tempval = rtw_read8(padapter, EFUSE_TEST+3);
rtw_write8(padapter, EFUSE_TEST+3, (tempval & 0x7F)); rtw_write8(padapter, EFUSE_TEST+3, (tempval & 0x7F));
...@@ -2166,7 +2166,7 @@ static void UpdateHalRAMask8723B(struct adapter *padapter, u32 mac_id, u8 rssi_l ...@@ -2166,7 +2166,7 @@ static void UpdateHalRAMask8723B(struct adapter *padapter, u32 mac_id, u8 rssi_l
} }
#endif #endif
if (pHalData->fw_ractrl == true) { if (pHalData->fw_ractrl) {
rtl8723b_set_FwMacIdConfig_cmd(padapter, mac_id, psta->raid, psta->bw_mode, shortGIrate, mask); rtl8723b_set_FwMacIdConfig_cmd(padapter, mac_id, psta->raid, psta->bw_mode, shortGIrate, mask);
} }
...@@ -2428,7 +2428,7 @@ void Hal_InitPGData(struct adapter *padapter, u8 *PROMContent) ...@@ -2428,7 +2428,7 @@ void Hal_InitPGData(struct adapter *padapter, u8 *PROMContent)
{ {
struct eeprom_priv *pEEPROM = GET_EEPROM_EFUSE_PRIV(padapter); struct eeprom_priv *pEEPROM = GET_EEPROM_EFUSE_PRIV(padapter);
if (false == pEEPROM->bautoload_fail_flag) { /* autoload OK. */ if (!pEEPROM->bautoload_fail_flag) { /* autoload OK. */
if (!pEEPROM->EepromOrEfuse) { if (!pEEPROM->EepromOrEfuse) {
/* Read EFUSE real map to shadow. */ /* Read EFUSE real map to shadow. */
EFUSE_ShadowMapUpdate(padapter, EFUSE_WIFI, false); EFUSE_ShadowMapUpdate(padapter, EFUSE_WIFI, false);
...@@ -2436,7 +2436,7 @@ void Hal_InitPGData(struct adapter *padapter, u8 *PROMContent) ...@@ -2436,7 +2436,7 @@ void Hal_InitPGData(struct adapter *padapter, u8 *PROMContent)
} }
} else {/* autoload fail */ } else {/* autoload fail */
RT_TRACE(_module_hci_hal_init_c_, _drv_notice_, ("AutoLoad Fail reported from CR9346!!\n")); RT_TRACE(_module_hci_hal_init_c_, _drv_notice_, ("AutoLoad Fail reported from CR9346!!\n"));
if (false == pEEPROM->EepromOrEfuse) if (!pEEPROM->EepromOrEfuse)
EFUSE_ShadowMapUpdate(padapter, EFUSE_WIFI, false); EFUSE_ShadowMapUpdate(padapter, EFUSE_WIFI, false);
memcpy((void *)PROMContent, (void *)pEEPROM->efuse_eeprom_data, HWSET_MAX_SIZE_8723B); memcpy((void *)PROMContent, (void *)pEEPROM->efuse_eeprom_data, HWSET_MAX_SIZE_8723B);
} }
...@@ -2842,12 +2842,12 @@ void Hal_EfuseParseThermalMeter_8723B( ...@@ -2842,12 +2842,12 @@ void Hal_EfuseParseThermalMeter_8723B(
/* */ /* */
/* ThermalMeter from EEPROM */ /* ThermalMeter from EEPROM */
/* */ /* */
if (false == AutoLoadFail) if (!AutoLoadFail)
pHalData->EEPROMThermalMeter = PROMContent[EEPROM_THERMAL_METER_8723B]; pHalData->EEPROMThermalMeter = PROMContent[EEPROM_THERMAL_METER_8723B];
else else
pHalData->EEPROMThermalMeter = EEPROM_Default_ThermalMeter_8723B; pHalData->EEPROMThermalMeter = EEPROM_Default_ThermalMeter_8723B;
if ((pHalData->EEPROMThermalMeter == 0xff) || (true == AutoLoadFail)) { if ((pHalData->EEPROMThermalMeter == 0xff) || AutoLoadFail) {
pHalData->bAPKThermalMeterIgnore = true; pHalData->bAPKThermalMeterIgnore = true;
pHalData->EEPROMThermalMeter = EEPROM_Default_ThermalMeter_8723B; pHalData->EEPROMThermalMeter = EEPROM_Default_ThermalMeter_8723B;
} }
...@@ -3094,12 +3094,12 @@ static void rtl8723b_fill_default_txdesc( ...@@ -3094,12 +3094,12 @@ static void rtl8723b_fill_default_txdesc(
(pattrib->dhcp_pkt != 1) && (pattrib->dhcp_pkt != 1) &&
(drv_userate != 1) (drv_userate != 1)
#ifdef CONFIG_AUTO_AP_MODE #ifdef CONFIG_AUTO_AP_MODE
&& (pattrib->pctrl != true) && (!pattrib->pctrl)
#endif #endif
) { ) {
/* Non EAP & ARP & DHCP type data packet */ /* Non EAP & ARP & DHCP type data packet */
if (pattrib->ampdu_en == true) { if (pattrib->ampdu_en) {
ptxdesc->agg_en = 1; /* AGG EN */ ptxdesc->agg_en = 1; /* AGG EN */
ptxdesc->max_agg_num = 0x1f; ptxdesc->max_agg_num = 0x1f;
ptxdesc->ampdu_density = pattrib->ampdu_spacing; ptxdesc->ampdu_density = pattrib->ampdu_spacing;
...@@ -3110,7 +3110,7 @@ static void rtl8723b_fill_default_txdesc( ...@@ -3110,7 +3110,7 @@ static void rtl8723b_fill_default_txdesc(
ptxdesc->data_ratefb_lmt = 0x1F; ptxdesc->data_ratefb_lmt = 0x1F;
if (pHalData->fw_ractrl == false) { if (!pHalData->fw_ractrl) {
ptxdesc->userate = 1; ptxdesc->userate = 1;
if (pHalData->dmpriv.INIDATA_RATE[pattrib->mac_id] & BIT(7)) if (pHalData->dmpriv.INIDATA_RATE[pattrib->mac_id] & BIT(7))
...@@ -3162,7 +3162,7 @@ static void rtl8723b_fill_default_txdesc( ...@@ -3162,7 +3162,7 @@ static void rtl8723b_fill_default_txdesc(
ptxdesc->mbssid = pattrib->mbssid & 0xF; ptxdesc->mbssid = pattrib->mbssid & 0xF;
ptxdesc->rty_lmt_en = 1; /* retry limit enable */ ptxdesc->rty_lmt_en = 1; /* retry limit enable */
if (pattrib->retry_ctrl == true) { if (pattrib->retry_ctrl) {
ptxdesc->data_rt_lmt = 6; ptxdesc->data_rt_lmt = 6;
} else { } else {
ptxdesc->data_rt_lmt = 12; ptxdesc->data_rt_lmt = 12;
...@@ -3265,14 +3265,14 @@ void rtl8723b_fill_fake_txdesc( ...@@ -3265,14 +3265,14 @@ void rtl8723b_fill_fake_txdesc(
SET_TX_DESC_QUEUE_SEL_8723B(pDesc, QSLT_MGNT); /* Fixed queue of Mgnt queue */ SET_TX_DESC_QUEUE_SEL_8723B(pDesc, QSLT_MGNT); /* Fixed queue of Mgnt queue */
/* Set NAVUSEHDR to prevent Ps-poll AId filed to be changed to error vlaue by Hw. */ /* Set NAVUSEHDR to prevent Ps-poll AId filed to be changed to error vlaue by Hw. */
if (true == IsPsPoll) { if (IsPsPoll) {
SET_TX_DESC_NAV_USE_HDR_8723B(pDesc, 1); SET_TX_DESC_NAV_USE_HDR_8723B(pDesc, 1);
} else { } else {
SET_TX_DESC_HWSEQ_EN_8723B(pDesc, 1); /* Hw set sequence number */ SET_TX_DESC_HWSEQ_EN_8723B(pDesc, 1); /* Hw set sequence number */
SET_TX_DESC_HWSEQ_SEL_8723B(pDesc, 0); SET_TX_DESC_HWSEQ_SEL_8723B(pDesc, 0);
} }
if (true == IsBTQosNull) { if (IsBTQosNull) {
SET_TX_DESC_BT_INT_8723B(pDesc, 1); SET_TX_DESC_BT_INT_8723B(pDesc, 1);
} }
...@@ -3284,7 +3284,7 @@ void rtl8723b_fill_fake_txdesc( ...@@ -3284,7 +3284,7 @@ void rtl8723b_fill_fake_txdesc(
/* */ /* */
/* Encrypt the data frame if under security mode excepct null data. Suggested by CCW. */ /* Encrypt the data frame if under security mode excepct null data. Suggested by CCW. */
/* */ /* */
if (true == bDataFrame) { if (bDataFrame) {
u32 EncAlg; u32 EncAlg;
EncAlg = padapter->securitypriv.dot11PrivacyAlgrthm; EncAlg = padapter->securitypriv.dot11PrivacyAlgrthm;
...@@ -3759,7 +3759,7 @@ void C2HPacketHandler_8723B(struct adapter *padapter, u8 *pbuffer, u16 length) ...@@ -3759,7 +3759,7 @@ void C2HPacketHandler_8723B(struct adapter *padapter, u8 *pbuffer, u16 length)
#ifdef CONFIG_WOWLAN #ifdef CONFIG_WOWLAN
struct pwrctrl_priv *pwrpriv = adapter_to_pwrctl(padapter); struct pwrctrl_priv *pwrpriv = adapter_to_pwrctl(padapter);
if (pwrpriv->wowlan_mode == true) { if (pwrpriv->wowlan_mode) {
DBG_871X("%s(): return because wowolan_mode ==true! CMDID =%d\n", __func__, pbuffer[0]); DBG_871X("%s(): return because wowolan_mode ==true! CMDID =%d\n", __func__, pbuffer[0]);
return; return;
} }
...@@ -4119,7 +4119,7 @@ void SetHwReg8723B(struct adapter *padapter, u8 variable, u8 *val) ...@@ -4119,7 +4119,7 @@ void SetHwReg8723B(struct adapter *padapter, u8 variable, u8 *val)
/* keep sn */ /* keep sn */
padapter->xmitpriv.nqos_ssn = rtw_read16(padapter, REG_NQOS_SEQ); padapter->xmitpriv.nqos_ssn = rtw_read16(padapter, REG_NQOS_SEQ);
if (pwrpriv->bkeepfwalive != true) { if (!pwrpriv->bkeepfwalive) {
/* RX DMA stop */ /* RX DMA stop */
val32 = rtw_read32(padapter, REG_RXPKT_NUM); val32 = rtw_read32(padapter, REG_RXPKT_NUM);
val32 |= RW_RELEASE_EN; val32 |= RW_RELEASE_EN;
...@@ -4274,7 +4274,7 @@ void GetHwReg8723B(struct adapter *padapter, u8 variable, u8 *val) ...@@ -4274,7 +4274,7 @@ void GetHwReg8723B(struct adapter *padapter, u8 variable, u8 *val)
u32 valRCR; u32 valRCR;
if ( if (
(padapter->bSurpriseRemoved == true) || padapter->bSurpriseRemoved ||
(adapter_to_pwrctl(padapter)->rf_pwrstate == rf_off) (adapter_to_pwrctl(padapter)->rf_pwrstate == rf_off)
) { ) {
/* If it is in HW/SW Radio OFF or IPS state, we do not check Fw LPS Leave, */ /* If it is in HW/SW Radio OFF or IPS state, we do not check Fw LPS Leave, */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment