Commit 62d5e139 authored by Y_Tomita's avatar Y_Tomita

Fixed conflict file.

parents a607dd5b 8a1428dc
...@@ -67,6 +67,7 @@ extern int otg_enabled; ...@@ -67,6 +67,7 @@ extern int otg_enabled;
#include "common/ran_context.h" #include "common/ran_context.h"
extern RAN_CONTEXT_t RC; extern RAN_CONTEXT_t RC;
hash_table_t *pdcp_coll_p = NULL;
#ifdef MBMS_MULTICAST_OUT #ifdef MBMS_MULTICAST_OUT
# include <sys/types.h> # include <sys/types.h>
...@@ -79,7 +80,6 @@ extern RAN_CONTEXT_t RC; ...@@ -79,7 +80,6 @@ extern RAN_CONTEXT_t RC;
static int mbms_socket = -1; static int mbms_socket = -1;
#endif #endif
hash_table_t *pdcp_coll_p = NULL;
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
/* /*
* If PDCP_UNIT_TEST is set here then data flow between PDCP and RLC is broken * If PDCP_UNIT_TEST is set here then data flow between PDCP and RLC is broken
...@@ -413,9 +413,9 @@ boolean_t pdcp_data_req( ...@@ -413,9 +413,9 @@ boolean_t pdcp_data_req(
* Control arrives here only if rlc_data_req() returns RLC_OP_STATUS_OK * Control arrives here only if rlc_data_req() returns RLC_OP_STATUS_OK
* so we return TRUE afterwards * so we return TRUE afterwards
*/ */
for (pdcp_uid=0; pdcp_uid< MAX_MOBILES_PER_ENB;pdcp_uid++){ for (pdcp_uid=0; pdcp_uid< MAX_MOBILES_PER_ENB;pdcp_uid++){
if (pdcp_enb[ctxt_pP->module_id].rnti[pdcp_uid] == ctxt_pP->rnti ) if (pdcp_enb[ctxt_pP->module_id].rnti[pdcp_uid] == ctxt_pP->rnti )
break; break;
} }
...@@ -2112,4 +2112,4 @@ void pdcp_layer_cleanup (void) ...@@ -2112,4 +2112,4 @@ void pdcp_layer_cleanup (void)
#ifdef PDCP_USE_RT_FIFO #ifdef PDCP_USE_RT_FIFO
EXPORT_SYMBOL(pdcp_2_nas_irq); EXPORT_SYMBOL(pdcp_2_nas_irq);
#endif //PDCP_USE_RT_FIFO #endif //PDCP_USE_RT_FIFO
\ No newline at end of file
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