UINT            NumOfPacketsSent;
        UCHAR           ucDirection;
        USHORT          usCID;
-       S_MIBS_EXTSERVICEFLOW_PARAMETERS        stMibsExtServiceFlowTable;
+       struct bcm_mibs_parameters stMibsExtServiceFlowTable;
        UINT            uiCurrentRxRate;
        UINT            uiThisPeriodRxBytes;
        UINT            uiTotalRxBytes;
 
        unsigned long   PHSErrorNumPackets;
 } S_MIBS_PHS_RULE;
 
-typedef struct _S_MIBS_EXTSERVICEFLOW_PARAMETERS {
+struct bcm_mibs_parameters {
        u32 wmanIfSfid;
        u32 wmanIfCmnCpsSfState;
        u32 wmanIfCmnCpsMaxSustainedRate;
        u32 wmanIfCmnCpsReqTxPolicy;
        u32 wmanIfCmnSfCsSpecification;
        u32 wmanIfCmnCpsTargetSaid;
-} S_MIBS_EXTSERVICEFLOW_PARAMETERS;
+};
 
 struct bcm_mibs_table {
        unsigned long   ulSFID;
        unsigned int    NumOfPacketsSent;
        unsigned char ucDirection;
        unsigned short  usCID;
-       S_MIBS_EXTSERVICEFLOW_PARAMETERS stMibsExtServiceFlowTable;
+       struct bcm_mibs_parameters stMibsExtServiceFlowTable;
        unsigned int    uiCurrentRxRate;
        unsigned int    uiThisPeriodRxBytes;
        unsigned int    uiTotalRxBytes;
 
        for (i = 0; i < HiPriority; i++) {
                /* resetting only the first size (S_MIBS_SERVICEFLOW_TABLE) for the SF. */
                /* It is same between MIBs and SF. */
-               memset(&Adapter->PackInfo[i].stMibsExtServiceFlowTable, 0, sizeof(S_MIBS_EXTSERVICEFLOW_PARAMETERS));
+               memset(&Adapter->PackInfo[i].stMibsExtServiceFlowTable, 0, sizeof(struct bcm_mibs_parameters));
        }
 }
 
 
 VOID CopyMIBSExtendedSFParameters(struct bcm_mini_adapter *Adapter, struct bcm_connect_mgr_params *psfLocalSet, UINT uiSearchRuleIndex)
 {
-       S_MIBS_EXTSERVICEFLOW_PARAMETERS *t = &Adapter->PackInfo[uiSearchRuleIndex].stMibsExtServiceFlowTable;
+       struct bcm_mibs_parameters *t = &Adapter->PackInfo[uiSearchRuleIndex].stMibsExtServiceFlowTable;
 
        t->wmanIfSfid = psfLocalSet->u32SFID;
        t->wmanIfCmnCpsMaxSustainedRate = psfLocalSet->u32MaxSustainedTrafficRate;