macCellCfg
[o-du/l2.git] / src / 5gnrmac / rg_cl_util.c
1 /*******************************************************************************
2 ################################################################################
3 #   Copyright (c) [2017-2019] [Radisys]                                        #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17 *******************************************************************************/
18
19 /* This file contains all utility functions for MAC CL */
20
21 #include "stdio.h"
22 #include "envdep.h"
23 #include "gen.h"
24 #include "gen.x"
25 #include "cm_hash.h"
26 #include "cm_hash.x"
27 #include "lwr_mac.h"
28
29  /*******************************************************************
30   *
31   * @brief Fetch cellCb from Hash list
32   *
33   * @details
34   *
35   *    Function : rgClUtlGetCellCb
36   *
37   *    Functionality:
38   *       - Searches for a cell entry at MAC CL 
39   *
40   * @params[in] cell Id
41   * @return Pointer to cellCb - success
42   *         NULLP - failure
43   *
44   * ****************************************************************/
45 PUBLIC ClCellCb * rgClUtlGetCellCb
46 (
47    U16 cellId
48 )
49 {
50    ClCellCb *cellCb;
51
52    if(cellId >= MAX_NUM_CELL_SUPP)
53    {
54       printf("\n Invalid Cell Id [%d]. rgClUtlGetCellCb failed.", cellId);
55       RETVALUE(NULLP);
56    }
57
58    cmHashListFind((CmHashListCp *)&clGlobalCp.cellCbLst, (U8 *)&cellId, sizeof(U16), 0, (PTR *)&cellCb);
59    
60    RETVALUE(cellCb);
61 }
62
63 /**********************************************************************
64          End of file
65 **********************************************************************/