cur_ch_offset = HAL_PRIME_CHNL_OFFSET_DONT_CARE;
 
 
-       /* check if there is wps ie, */
-       /* if there is wpsie in beacon, the hostapd will update beacon twice when stating hostapd, */
-       /* and at first time the security ie (RSN/WPA IE) will not include in beacon. */
+       /* check if there is wps ie,
+        * if there is wpsie in beacon, the hostapd will update
+        * beacon twice when stating hostapd, and at first time the
+        * security ie (RSN/WPA IE) will not include in beacon.
+        */
        if (!rtw_get_wps_ie(pnetwork->IEs + _FIXED_IE_LENGTH_, pnetwork->IELength - _FIXED_IE_LENGTH_, NULL, NULL))
                pmlmeext->bstart_bss = true;
 
                update_hw_ht_param(padapter);
        }
 
-       if (pmlmepriv->cur_network.join_res != true) { /* setting only at  first time */
-               /* WEP Key will be set before this function, do not clear CAM. */
+       /* setting only at  first time */
+       if (!(pmlmepriv->cur_network.join_res)) {
+               /* WEP Key will be set before this function, do not
+                * clear CAM.
+                */
                if ((psecuritypriv->dot11PrivacyAlgrthm != _WEP40_) &&
                    (psecuritypriv->dot11PrivacyAlgrthm != _WEP104_))
                        flush_all_cam_entry(padapter);  /* clear CAM */
                        }
                }
        }
-       /* TODO: need to judge the phy parameters on concurrent mode for single phy */
+       /* TODO: need to judge the phy parameters on concurrent
+        * mode for single phy
+        */
        set_channel_bwmode(padapter, cur_channel, cur_ch_offset, cur_bwmode);
 
        DBG_88E("CH =%d, BW =%d, offset =%d\n", cur_channel, cur_bwmode, cur_ch_offset);
                        if ((p) && !memcmp(p + 2, WMM_PARA_IE, 6)) {
                                pmlmepriv->qospriv.qos_option = 1;
 
-                               *(p + 8) |= BIT(7);/* QoS Info, support U-APSD */
+                               /* QoS Info, support U-APSD */
+                               *(p + 8) |= BIT(7);
 
-                               /* disable all ACM bits since the WMM admission control is not supported */
+                               /* disable all ACM bits since the WMM
+                                * admission control is not supported
+                                */
                                *(p + 10) &= ~BIT(4); /* BE */
                                *(p + 14) &= ~BIT(4); /* BK */
                                *(p + 18) &= ~BIT(4); /* VI */
        pmlmepriv->update_bcn = false;
        pmlmeext->bstart_bss = false;
 
-       /* reset and init security priv , this can refine with rtw_reset_securitypriv */
+       /* reset and init security priv , this can refine with
+        * rtw_reset_securitypriv
+        */
        memset((unsigned char *)&padapter->securitypriv, 0, sizeof(struct security_priv));
        padapter->securitypriv.ndisauthtype = Ndis802_11AuthModeOpen;
        padapter->securitypriv.ndisencryptstatus = Ndis802_11WEPDisabled;