/* break; */
 
        /* case ODM_CMNINFO_MAC_STATUS: */
-       /* pDM_Odm->pMacInfo = (ODM_MAC_INFO *)pValue; */
+       /* pDM_Odm->pMacInfo = (struct odm_mac_status_info *)pValue; */
        /* break; */
        /* To remove the compiler warning, must add an empty default statement to handle the other values. */
        default:
 
        bool is_beacon;
 };
 
-typedef struct _ODM_Phy_Dbg_Info_ {
+struct odm_phy_dbg_info {
        /* ODM Write, debug info */
        s8 RxSNRdB[4];
        u32 NumQryPhyStatus;
        /* Others */
        s32 RxEVM[4];
 
-} ODM_PHY_DBG_INFO_T;
+};
 
-typedef struct _ODM_Mac_Status_Info_ {
+struct odm_mac_status_info {
        u8 test;
-} ODM_MAC_INFO;
+};
 
 typedef enum tag_Dynamic_ODM_Support_Ability_Type {
        /*  BB Team */
        /*  Define ........... */
 
        /*  Latest packet phy info (ODM write) */
-       ODM_PHY_DBG_INFO_T PhyDbgInfo;
+       struct odm_phy_dbg_info PhyDbgInfo;
        /* PHY_INFO_88E         PhyInfo; */
 
        /*  Latest packet phy info (ODM write) */
-       ODM_MAC_INFO *pMacInfo;
+       struct odm_mac_status_info *pMacInfo;
        /* MAC_INFO_88E         MacInfo; */
 
        /*  Different Team independt structure?? */