U8, U16, U32 data type changes
[o-du/l2.git] / src / 5gnrrlc / kw_udx_ptul.c
index a6c3fa8..0fda76d 100755 (executable)
@@ -61,7 +61,7 @@ PRIVATE S16 PtUlUdxUbndReq ARGS((Pst* pst, SuId suId,Reason reason));
 PRIVATE S16 PtUlUdxCfgReq ARGS((Pst *pst, SpId spId, RlcCfgInfo *cfgInfo));
 PRIVATE S16 PtUlUdxStaUpdReq ARGS((Pst* pst,SpId spId,CmLteRlcId *rlcId,
                                 RlcUdxStaPdu         *pStaPdu ));
-PRIVATE S16 PtUlUdxUeIdChgReq ARGS((Pst *pst, SpId spId, U32 transId, 
+PRIVATE S16 PtUlUdxUeIdChgReq ARGS((Pst *pst, SpId spId, uint32_t transId, 
                                    CkwUeInfo *ueInfo, CkwUeInfo *newUeInfo));
 PRIVATE S16 PtUlUdxStaPduReq ARGS(( Pst* pst,SpId  spId, CmLteRlcId *rlcId,
                              RlcUdxDlStaPdu  *pStaPdu ));
@@ -79,7 +79,6 @@ SuId suId;                      /* Service User Id */
 SpId spId;                    /* Status */
 #endif
 {
-   TRC3(PtUlUdxBndReq)
 
    return ROK;
 
@@ -119,7 +118,6 @@ SpId spId;                      /* Service User Id */
 Reason Reason;                    /* Status */
 #endif
 {
-   TRC3(PtUlUdxUbndReq)
 
    return ROK;
 
@@ -139,7 +137,6 @@ SpId spId;                      /* Service User Id */
 RlcCfgInfo *cfmInfo;              /* Config Info */
 #endif
 {
-   TRC3(PtUlUdxCfgReq)
 
    return ROK;
 
@@ -150,7 +147,7 @@ PRIVATE S16 PtUlUdxUeIdChgReq
 (
 Pst *pst,                      /* post structure */
 SpId spId,                     /* Service User Id */
-U32      transId,              /* transaction Id */
+uint32_t  transId,              /* transaction Id */
 CkwUeInfo *ueInfo,             /* Config Info */
 CkwUeInfo *newUeInfo           /* Config Info */
 )
@@ -158,13 +155,11 @@ CkwUeInfo *newUeInfo           /* Config Info */
 PRIVATE S16 PtUlUdxUeIdChgReq(pst, spId,transId, ueInfo, newUeInfo)
 Pst *pst;                      /* post structure */
 SpId spId;                     /* Service User Id */
-U32      transId;              /* transaction Id */
+uint32_t  transId;              /* transaction Id */
 CkwUeInfo *ueInfo;             /* Config Info */
 CkwUeInfo *newUeInfo;          /* Config Info */
 #endif
 {
-   TRC3(PtUlUdxUeIdChgReq)
-
 
    return ROK;
 
@@ -179,7 +174,6 @@ CmLteRlcId          *rlcId,
 RlcUdxDlStaPdu       *pStaPdu
 )
 {
-   TRC3(PtUlUdxStaPduReq);
 
    return ROK;
 }
@@ -213,8 +207,6 @@ RlcUdxDlStaPdu       *pStaPdu;
 #endif
 {
 
-   TRC3(PtUlUdxStaUpdReq);
-
    return ROK;
 } /* end of RlcUlmDlmStaUpd*/
 
@@ -244,8 +236,6 @@ RlcL2MeasReqEvt      *measReqEvt;
 #endif
 {
 
-   TRC3(PtUlUdxL2MeasReq);
-
    return ROK;
 } 
 
@@ -264,18 +254,16 @@ RlcL2MeasReqEvt      *measReqEvt;
 #ifdef ANSI
 PRIVATE S16  PtUlUdxL2MeasSendReq
 (
-Pst*                pst,
-U8                  status
+Pst*       pst,
+uint8_t    status
 )
 #else
 PRIVATE S16 PtUlUdxL2MeasSendReq(pst, status )
-Pst*                pst;
-U8                  status
+Pst*        pst;
+uint8_t     status
 #endif
 {
 
-   TRC3(PtUlUdxL2MeasSendReq);
-
    return ROK;
 }
 
@@ -294,18 +282,16 @@ U8                  status
 #ifdef ANSI
 PRIVATE S16  PtUlUdxL2MeasStopReq
 (
-Pst*                pst,
-U8                  status
+Pst*      pst,
+uint8_t   status
 )
 #else
 PRIVATE S16 PtUlUdxL2MeasStopReq(pst, status )
-Pst*                pst;
-U8                  status
+Pst*       pst;
+uint8_t    status
 #endif
 {
 
-   TRC3(PtUlUdxL2MeasStopReq);
-
    return ROK;
 }
 #endif
@@ -518,8 +504,6 @@ SuId suId;                      /* Service User Id */
 SpId spId;                    /* Status */
 #endif
 {
-   TRC3(rlcUlUdxBndReq)
-
    /* jump to specific primitive depending on configured selector */
    (*rlcUlUdxBndReqMt[pst->selector])(pst, suId, spId);
 
@@ -561,8 +545,6 @@ SpId spId;                      /* Service User Id */
 Reason Reason;                    /* Status */
 #endif
 {
-   TRC3(rlcUlUdxUbndReq)
-
    /* jump to specific primitive depending on configured selector */
    (*rlcUlUdxUbndReqMt[pst->selector])(pst, spId,reason );
 
@@ -584,7 +566,6 @@ SuId spId;                      /* Service User Id */
 RlcCfgInfo *cfmInfo;              /* Config Info */
 #endif
 {
-   TRC3(rlcUlUdxCfgReq)
 
    /* jump to specific primitive depending on configured selector */
    (*rlcUlUdxCfgReqMt[pst->selector])(pst, spId, cfmInfo);
@@ -598,7 +579,7 @@ S16 rlcUlUdxUeIdChgReq
 (
 Pst *pst,                      /* post structure */
 SpId spId,                     /* Service User Id */
-U32      transId,              /* transaction Id */
+uint32_t  transId,              /* transaction Id */
 CkwUeInfo *ueInfo,             /* Config Info */
 CkwUeInfo *newUeInfo           /* Config Info */
 )
@@ -606,12 +587,11 @@ CkwUeInfo *newUeInfo           /* Config Info */
 S16 rlcUlUdxUeIdChgReq(pst, spId,transId, ueInfo, newUeInfo)
 Pst *pst;                      /* post structure */
 SpId spId;                     /* Service User Id */
-U32      transId;              /* transaction Id */
+uint32_t  transId;              /* transaction Id */
 CkwUeInfo *ueInfo;             /* Config Info */
 CkwUeInfo *newUeInfo;          /* Config Info */
 #endif
 {
-   TRC3(rlcUlUdxUeIdChgReq)
 
    /* jump to specific primitive depending on configured selector */
    (*rlcUlUdxUeIdChgReqMt[pst->selector])(pst, spId,transId,ueInfo,newUeInfo);
@@ -670,8 +650,6 @@ RlcL2MeasReqEvt      *measReqEvt;
 #endif
 {
 
-   TRC3(rlcUlUdxStaUpdReq);
-
    return ((*rlcUlUdxL2MeasReqMt[pst->selector])(pst,measReqEvt));
 } /* end of rlcUlUdxL2MeasReq*/
 
@@ -690,18 +668,16 @@ RlcL2MeasReqEvt      *measReqEvt;
 #ifdef ANSI
 S16  rlcUlUdxL2MeasSendReq
 (
-Pst*                pst,
-U8                  measType
+Pst*        pst,
+uint8_t     measType
 )
 #else
 S16 rlcUlUdxL2MeasSendReq(pst,measReqEvt)
-Pst*                pst;
-U8                  measType;
+Pst*        pst;
+uint8_t     measType;
 #endif
 {
 
-   TRC3(rlcUlUdxStaUpdReq);
-
    return ((*rlcUlUdxL2MeasSendReqMt[pst->selector])(pst,measType));
 } /* end of rlcUlUdxMesReq*/
 
@@ -720,18 +696,16 @@ U8                  measType;
 #ifdef ANSI
 S16  rlcUlUdxL2MeasStopReq
 (
-Pst*                pst,
-U8                  measType
+Pst*        pst,
+uint8_t     measType
 )
 #else
 S16 rlcUlUdxL2MeasStopReq(pst,measReqEvt)
-Pst*                pst;
-U8                  measType;
+Pst*        pst;
+uint8_t     measType;
 #endif
 {
 
-   TRC3(rlcUlUdxStaUpdReq);
-
    return ((*rlcUlUdxL2MeasStopReqMt[pst->selector])(pst,measType));
 } /* end of rlcUlUdxMesReq*/
 #endif