Renaming UE IDX to UE ID (Leftover fixes) [Issue-ID: ODUHIGH-401]
[o-du/l2.git] / src / cm / common_def.h
index 2346187..c709204 100644 (file)
 #define MAX_TDD_PERIODICITY_SLOTS 160 
 #endif
 
-/* TODO : Delete GET_UE_IDX once replaced with GET_UE_ID at all places */
-#define GET_UE_IDX( _crnti,_ueIdx)         \
-{                                          \
-   _ueIdx = _crnti - ODU_START_CRNTI + 1;  \
-}
-
 #define GET_UE_ID( _crnti,_ueId)           \
 {                                          \
    _ueId = _crnti - ODU_START_CRNTI + 1;  \
 }
 
-#define GET_CRNTI( _crnti,_ueIdx)          \
+#define GET_CRNTI( _crnti, _ueId)          \
 {                                          \
-   _crnti = _ueIdx + ODU_START_CRNTI - 1;  \
+   _crnti = _ueId + ODU_START_CRNTI - 1;  \
 }
 
 /* Calculates cellIdx from cellId */