********************************************************************************************************************/
 static u8 RxTsDeleteBA(struct ieee80211_device *ieee, struct rx_ts_record *pRxTs)
 {
-       PBA_RECORD              pBa = &pRxTs->RxAdmittedBARecord;
+       PBA_RECORD              pBa = &pRxTs->rx_admitted_ba_record;
        u8                      bSendDELBA = false;
 
        if (pBa->bValid) {
                IEEE80211_DEBUG(IEEE80211_DL_ERR, "can't get TS in %s()\n", __func__);
                goto OnADDBAReq_Fail;
        }
-       pBA = &pTS->RxAdmittedBARecord;
+       pBA = &pTS->rx_admitted_ba_record;
        // To Determine the ADDBA Req content
        // We can do much more check here, including BufferSize, AMSDU_Support, Policy, StartSeqCtrl...
        // I want to check StartSeqCtrl to make sure when we start aggregation!!!
                        ieee80211_send_DELBA(
                                ieee,
                                pTsCommonInfo->addr,
-                               &pRxTs->RxAdmittedBARecord,
+                               &pRxTs->rx_admitted_ba_record,
                                TxRxSelect,
                                DELBA_REASON_END_BA);
        }
 
 void RxBaInactTimeout(struct timer_list *t)
 {
-       struct rx_ts_record *pRxTs = from_timer(pRxTs, t, RxAdmittedBARecord.Timer);
+       struct rx_ts_record *pRxTs = from_timer(pRxTs, t, rx_admitted_ba_record.Timer);
        struct ieee80211_device *ieee = container_of(pRxTs, struct ieee80211_device, RxTsRecord[pRxTs->num]);
 
        RxTsDeleteBA(ieee, pRxTs);
        ieee80211_send_DELBA(
                ieee,
                pRxTs->ts_common_info.addr,
-               &pRxTs->RxAdmittedBARecord,
+               &pRxTs->rx_admitted_ba_record,
                RX_DIR,
                DELBA_REASON_TIMEOUT);
 }
 
        ResetTsCommonInfo(&pTS->ts_common_info);
        pTS->rx_indicate_seq = 0xffff; // This indicate the rx_indicate_seq is not used now!!
        pTS->rx_timeout_indicate_seq = 0xffff; // This indicate the rx_timeout_indicate_seq is not used now!!
-       ResetBaEntry(&pTS->RxAdmittedBARecord);   // For BA Recipient
+       ResetBaEntry(&pTS->rx_admitted_ba_record);        // For BA Recipient
 }
 
 void TSInitialize(struct ieee80211_device *ieee)
                            0);
                timer_setup(&pRxTS->ts_common_info.inact_timer, TsInactTimeout,
                            0);
-               timer_setup(&pRxTS->RxAdmittedBARecord.Timer,
+               timer_setup(&pRxTS->rx_admitted_ba_record.Timer,
                            RxBaInactTimeout, 0);
                timer_setup(&pRxTS->rx_pkt_pending_timer, RxPktPendingTimeout, 0);
                ResetRxTsEntry(pRxTS);