#include <drv_types.h>
 #include <rtw_debug.h>
 
-static void _dynamic_check_timer_handlder (void *FunctionContext)
+static void _dynamic_check_timer_handlder(void *FunctionContext)
 {
        struct adapter *adapter = FunctionContext;
 
 {
        struct mlme_priv *pmlmepriv = &(adapter->mlmepriv);
 
-       if ((check_fwstate(pmlmepriv, WIFI_ADHOC_MASTER_STATE) ==true) ||
-               (check_fwstate(pmlmepriv, WIFI_ADHOC_STATE) ==true))
+       if ((check_fwstate(pmlmepriv, WIFI_ADHOC_MASTER_STATE) == true) ||
+               (check_fwstate(pmlmepriv, WIFI_ADHOC_STATE) == true))
        {
                rtw_cfg80211_ibss_indicate_connect(adapter);
        }
                /* reset RX BIP packet number */
                pmlmeext->mgnt_80211w_IPN_rx = 0;
 
-               memset((unsigned char *)&adapter->securitypriv, 0, sizeof (struct security_priv));
+               memset((unsigned char *)&adapter->securitypriv, 0, sizeof(struct security_priv));
 
                /*  Added by Albert 2009/02/18 */
                /*  Restore the PMK information to securitypriv structure for the following connection. */
        {
                /* if (adapter->mlmepriv.fw_state & WIFI_STATION_STATE) */
                /*  */
-               struct security_priv *psec_priv =&adapter->securitypriv;
+               struct security_priv *psec_priv = &adapter->securitypriv;
 
-               psec_priv->dot11AuthAlgrthm =dot11AuthAlgrthm_Open;  /* open system */
+               psec_priv->dot11AuthAlgrthm = dot11AuthAlgrthm_Open;  /* open system */
                psec_priv->dot11PrivacyAlgrthm = _NO_PRIVACY_;
                psec_priv->dot11PrivacyKeyIndex = 0;
 
 void rtw_report_sec_ie(struct adapter *adapter, u8 authmode, u8 *sec_ie)
 {
        uint    len;
-       u8 *buff,*p, i;
+       u8 *buff, *p, i;
        union iwreq_data wrqu;
 
        RT_TRACE(_module_mlme_osdep_c_, _drv_info_, ("+rtw_report_sec_ie, authmode =%d\n", authmode));
                }
                p = buff;
 
-               p+=sprintf(p,"ASSOCINFO(ReqIEs =");
+               p += sprintf(p, "ASSOCINFO(ReqIEs =");
 
-               len = sec_ie[1]+2;
-               len = (len < IW_CUSTOM_MAX) ? len:IW_CUSTOM_MAX;
+               len = sec_ie[1] + 2;
+               len = (len < IW_CUSTOM_MAX) ? len : IW_CUSTOM_MAX;
 
-               for (i = 0;i<len;i++) {
-                       p+=sprintf(p,"%02x", sec_ie[i]);
+               for (i = 0; i < len; i++) {
+                       p += sprintf(p, "%02x", sec_ie[i]);
                }
 
-               p+=sprintf(p,")");
+               p += sprintf(p, ")");
 
                memset(&wrqu, 0, sizeof(wrqu));
 
-               wrqu.data.length =p-buff;
+               wrqu.data.length = p - buff;
 
-               wrqu.data.length = (wrqu.data.length<IW_CUSTOM_MAX) ? wrqu.data.length:IW_CUSTOM_MAX;
+               wrqu.data.length = (wrqu.data.length < IW_CUSTOM_MAX) ? wrqu.data.length : IW_CUSTOM_MAX;
 
                kfree(buff);
        }