1820bdf4b9f819012601d0faf41560c55af672f9
[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 "lcl.h"
28 #include "rg_cl.h"
29
30  /*******************************************************************
31   *
32   * @brief Fetch cellCb from Hash list
33   *
34   * @details
35   *
36   *    Function : rgClUtlGetCellCb
37   *
38   *    Functionality:
39   *       - Searches for a cell entry at MAC CL 
40   *
41   * @params[in] cell Id
42   * @return Pointer to cellCb - success
43   *         NULLP - failure
44   *
45   * ****************************************************************/
46 PUBLIC ClCellCb * rgClUtlGetCellCb
47 (
48    U16 cellId
49 )
50 {
51    ClCellCb *cellCb;
52
53    if(cellId >= MAX_NUM_CELL_SUPP)
54    {
55       printf("\n Invalid Cell Id [%d]. rgClUtlGetCellCb failed.", cellId);
56       RETVALUE(NULLP);
57    }
58
59    cmHashListFind((CmHashListCp *)&clGlobalCp.cellCbLst, (U8 *)&cellId, sizeof(U16), 0, (PTR *)&cellCb);
60    
61    RETVALUE(cellCb);
62 }
63
64 /**********************************************************************
65          End of file
66 **********************************************************************/