Commit 1a700b82 authored by Marwan Hammouda's avatar Marwan Hammouda

fixes to remove compiling error

parent fbe72b1c
...@@ -735,7 +735,7 @@ static void add_drb_am(int rnti, int drb_id, const NR_RLC_BearerConfig_t *rlc_Be ...@@ -735,7 +735,7 @@ static void add_drb_am(int rnti, int drb_id, const NR_RLC_BearerConfig_t *rlc_Be
LOG_E(RLC, "%s:%d:%s: DRB %d already exists for UE with RNTI %04x, do nothing\n", __FILE__, __LINE__, __FUNCTION__, drb_id, rnti); LOG_E(RLC, "%s:%d:%s: DRB %d already exists for UE with RNTI %04x, do nothing\n", __FILE__, __LINE__, __FUNCTION__, drb_id, rnti);
} else { } else {
t_reassembly = get_softmodem_params()->ntn_trs + get_softmodem_params()->ntn_trs_offset; t_reassembly = get_softmodem_params()->ntn_trs + get_softmodem_params()->ntn_trs_offset;
nr_rlc_am = new_nr_rlc_entity_am(RLC_RX_MAXSIZE, nr_rlc_entity_t *nr_rlc_am = new_nr_rlc_entity_am(RLC_RX_MAXSIZE,
RLC_TX_MAXSIZE, RLC_TX_MAXSIZE,
deliver_sdu, ue, deliver_sdu, ue,
successful_delivery, ue, successful_delivery, ue,
...@@ -823,7 +823,7 @@ static void add_drb_um(int rnti, int drb_id, const NR_RLC_BearerConfig_t *rlc_Be ...@@ -823,7 +823,7 @@ static void add_drb_um(int rnti, int drb_id, const NR_RLC_BearerConfig_t *rlc_Be
LOG_E(RLC, "DEBUG add_drb_um %s:%d:%s: warning DRB %d already exist for ue %d, do nothing\n", __FILE__, __LINE__, __FUNCTION__, drb_id, rnti); LOG_E(RLC, "DEBUG add_drb_um %s:%d:%s: warning DRB %d already exist for ue %d, do nothing\n", __FILE__, __LINE__, __FUNCTION__, drb_id, rnti);
} else { } else {
t_reassembly = get_softmodem_params()->ntn_trs + get_softmodem_params()->ntn_trs_offset; t_reassembly = get_softmodem_params()->ntn_trs + get_softmodem_params()->ntn_trs_offset;
nr_rlc_um = new_nr_rlc_entity_um(RLC_RX_MAXSIZE, nr_rlc_entity_t *nr_rlc_um = new_nr_rlc_entity_um(RLC_RX_MAXSIZE,
RLC_TX_MAXSIZE, RLC_TX_MAXSIZE,
deliver_sdu, ue, deliver_sdu, ue,
t_reassembly, t_reassembly,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment