memcpy(strConnectInfo.bssid, pstrHostIFconnectAttr->bssid, 6);
 
                        if (pstrHostIFconnectAttr->ies) {
-                               strConnectInfo.ReqIEsLen = pstrHostIFconnectAttr->ies_len;
+                               strConnectInfo.req_ies_len = pstrHostIFconnectAttr->ies_len;
                                strConnectInfo.req_ies = kmalloc(pstrHostIFconnectAttr->ies_len, GFP_KERNEL);
                                memcpy(strConnectInfo.req_ies,
                                       pstrHostIFconnectAttr->ies,
                }
 
                if (hif_drv->usr_conn_req.ies) {
-                       strConnectInfo.ReqIEsLen = hif_drv->usr_conn_req.ies_len;
+                       strConnectInfo.req_ies_len = hif_drv->usr_conn_req.ies_len;
                        strConnectInfo.req_ies = kmalloc(hif_drv->usr_conn_req.ies_len, GFP_KERNEL);
                        memcpy(strConnectInfo.req_ies,
                               hif_drv->usr_conn_req.ies,
                        }
 
                        if (hif_drv->usr_conn_req.ies) {
-                               strConnectInfo.ReqIEsLen = hif_drv->usr_conn_req.ies_len;
+                               strConnectInfo.req_ies_len = hif_drv->usr_conn_req.ies_len;
                                strConnectInfo.req_ies = kmalloc(hif_drv->usr_conn_req.ies_len, GFP_KERNEL);
                                memcpy(strConnectInfo.req_ies,
                                       hif_drv->usr_conn_req.ies,
 
                }
 
                cfg80211_connect_result(dev, pstrConnectInfo->bssid,
-                                       pstrConnectInfo->req_ies, pstrConnectInfo->ReqIEsLen,
+                                       pstrConnectInfo->req_ies, pstrConnectInfo->req_ies_len,
                                        pstrConnectInfo->pu8RespIEs, pstrConnectInfo->u16RespIEsLen,
                                        u16ConnectStatus, GFP_KERNEL);
        } else if (enuConnDisconnEvent == CONN_DISCONN_EVENT_DISCONN_NOTIF)    {