X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrmac%2Fmac_upr_inf_api.c;h=273ce4e424e2dd6b3f20a5b4694941d9c971deab;hb=fa4911bd05674f9f528287d4e1b606a4c338b280;hp=b37b6ab13bc944bf1cec4d2a4291896193a6e096;hpb=0fccb83e55b237d60cf451bab71a0c7242cc6e66;p=o-du%2Fl2.git diff --git a/src/5gnrmac/mac_upr_inf_api.c b/src/5gnrmac/mac_upr_inf_api.c index b37b6ab13..273ce4e42 100644 --- a/src/5gnrmac/mac_upr_inf_api.c +++ b/src/5gnrmac/mac_upr_inf_api.c @@ -36,6 +36,14 @@ DuMacStopInd packMacStopIndOpts[] = packMacStopInd }; +/* Funtion pointer options for UL CCCH indication */ +DuMacUlCcchInd packMacUlCcchIndOpts[] = +{ + packMacUlCcchInd, + duHandleUlCcchInd, + packMacUlCcchInd +}; + /******************************************************************* * * @brief Send slot indication to MAC @@ -80,6 +88,30 @@ uint16_t MacDuAppStopInd(Pst *pst, MacCellStopInfo *cellStopId) return (*packMacStopIndOpts[pst->selector])(pst, cellStopId); } +/******************************************************************* + * + * @brief Send UL CCCH Ind to DU APP + * + * @details + * + * Function :MacDuAppUlCcchInd + * + * Functionality: + * Select appropriate function using selector value and + * send to DU APP + * + * @params[in] Post structure pointer + * UlCcchInd pointer + * @return ROK - success + * RFAILED - failure + * + * ****************************************************************/ +uint16_t MacDuAppUlCcchInd(Pst *pst, UlCcchIndInfo *ulCcchIndInfo) +{ + return (*packMacUlCcchIndOpts[pst->selector])(pst, ulCcchIndInfo); +} + + /********************************************************************** End of file **********************************************************************/