X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fcm%2Frgm.c;h=0dd9f684888dbacf4e28e59091f1e8f80f206462;hb=def50dc175cebc67238db5f1acd5ff322a2279bd;hp=96d81f1202b0e37a9c96b088153e16e536c8e5be;hpb=1616921700a3c7541f1df6dd2678f9ee4d8e933b;p=o-du%2Fl2.git diff --git a/src/cm/rgm.c b/src/cm/rgm.c index 96d81f120..0dd9f6848 100755 --- a/src/cm/rgm.c +++ b/src/cm/rgm.c @@ -204,7 +204,7 @@ Reason reason; * * @param[in] Pst* pst * @param[in] SuId suId -* @param[in] U8 status +* @param[in] uint8_t status * @return S16 * -# ROK **/ @@ -213,13 +213,13 @@ S16 cmPkLwLcRgmBndCfm ( Pst* pst, SuId suId, -U8 status +uint8_t status ) #else S16 cmPkLwLcRgmBndCfm(pst, suId, status) Pst* pst; SuId suId; -U8 status; +uint8_t status; #endif { Buffer *mBuf = NULLP; @@ -256,7 +256,7 @@ U8 status; * * @param[in] Pst* pst * @param[in] SuId suId -* @param[in] U8 status +* @param[in] uint8_t status * @return S16 * -# ROK **/ @@ -275,7 +275,7 @@ Buffer *mBuf; #endif { SuId suId; - U8 status; + uint8_t status; if (oduPackUInt8(&status, mBuf) != ROK) @@ -322,7 +322,7 @@ RgmPrbRprtCfg * prbRprtCfg; #endif { Buffer *mBuf = NULLP; - U32 len = sizeof(RgmPrbRprtCfg); + uint32_t len = sizeof(RgmPrbRprtCfg); if (SGetMsg(pst->region, pst->pool, &mBuf) != ROK) { @@ -718,7 +718,7 @@ Buffer *mBuf; * * @param[in] Pst* pst * @param[in] SuId suId -* @param[in] U8 status +* @param[in] uint8_t status * @return S16 * -# ROK **/ @@ -727,13 +727,13 @@ S16 cmPkRgmBndCfm ( Pst* pst, SuId suId, -U8 status +uint8_t status ) #else S16 cmPkRgmBndCfm(pst, suId, status) Pst* pst; SuId suId; -U8 status; +uint8_t status; #endif { Buffer *mBuf = NULLP; @@ -770,7 +770,7 @@ U8 status; * * @param[in] Pst* pst * @param[in] SuId suId -* @param[in] U8 status +* @param[in] uint8_t status * @return S16 * -# ROK **/ @@ -789,7 +789,7 @@ Buffer *mBuf; #endif { SuId suId; - U8 status; + uint8_t status; if (oduPackUInt8(&status, mBuf) != ROK) @@ -900,7 +900,7 @@ RgmPrbRprtCfg * prbRprtCfg; #endif { Buffer *mBuf = NULLP; - U32 len = sizeof(RgmPrbRprtCfg); + uint32_t len = sizeof(RgmPrbRprtCfg); if (SGetMsg(pst->region, pst->pool, &mBuf) != ROK) { @@ -1109,7 +1109,7 @@ S16 cmUnpkPrbRprtInd(prbRprtInd, mBuf) Buffer *mBuf; #endif { - U32 idx = 0; + uint32_t idx = 0; /* RRM_SP1_START */ @@ -1281,10 +1281,10 @@ S16 cmUnpkTransModeInd(transModeInd, mBuf) Buffer *mBuf; #endif { - U32 tmpModeEnum; + uint32_t tmpModeEnum; CMCHKUNPK(oduPackUInt8, &transModeInd->bCellId, mBuf); CMCHKUNPK(oduPackUInt16, &transModeInd->usCrnti, mBuf); - CMCHKUNPK(oduPackUInt32, (U32 *)&tmpModeEnum, mBuf); + CMCHKUNPK(oduPackUInt32, (uint32_t *)&tmpModeEnum, mBuf); transModeInd->eMode = (RgmTxnMode)tmpModeEnum; return ROK; }