X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrmac%2Fmac_msg_hdl.c;h=90230a31788c318f2e3932969534ed57057d9579;hb=refs%2Fchanges%2F58%2F3458%2F3;hp=1c71db8a10d1843d52d37f6eb3b19bafcd89ca1c;hpb=5d64905a366e340b65b01021ec4eec4f7350a94e;p=o-du%2Fl2.git diff --git a/src/5gnrmac/mac_msg_hdl.c b/src/5gnrmac/mac_msg_hdl.c index 1c71db8a1..90230a317 100644 --- a/src/5gnrmac/mac_msg_hdl.c +++ b/src/5gnrmac/mac_msg_hdl.c @@ -56,9 +56,11 @@ #include "rg_prg.x" #include "du_app_mac_inf.h" #include "rg.x" - +#include "lwr_mac_fsm.h" /* This file contains message handling functionality for MAC */ +extern void sendToLowerMac(uint16_t msgType, uint32_t msgLen, void *msg); + /******************************************************************* * * @brief Handles cell start reuqest from DU APP @@ -79,7 +81,7 @@ uint16_t MacHdlCellStartReq(Pst *pst, MacCellStartInfo *cellStartInfo) { DU_LOG("\nMAC : Handling cell start request"); - sendToLowerMac(FAPI_START_REQUEST, 0, cellStartInfo); + sendToLowerMac(START_REQUEST, 0, cellStartInfo); MAC_FREE_MEM(pst->region, pst->pool, cellStartInfo, \ sizeof(MacCellStartInfo)); @@ -106,8 +108,8 @@ uint16_t MacHdlCellStartReq(Pst *pst, MacCellStartInfo *cellStartInfo) * ****************************************************************/ uint16_t MacHdlCellStopReq(Pst *pst, MacCellStopInfo *cellStopInfo) { - DU_LOG("\nMAC : Handling cell start request"); - sendToLowerMac(FAPI_STOP_REQUEST, 0, cellStopInfo); + DU_LOG("\nMAC : Handling cell stop request"); + sendToLowerMac(STOP_REQUEST, 0, cellStopInfo); MAC_FREE_MEM(pst->region, pst->pool, cellStopInfo, \ sizeof(MacCellStopInfo));