Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
spbro
OpenXG-RAN
Commits
b5acd48e
Commit
b5acd48e
authored
Mar 22, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused rrc_rlc_register_rrc()
parent
acf73ac2
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
20 deletions
+0
-20
openair2/LAYER2/RLC/rlc.h
openair2/LAYER2/RLC/rlc.h
+0
-7
openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c
openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c
+0
-5
openair2/LAYER2/rlc_v2/rlc_oai_api.c
openair2/LAYER2/rlc_v2/rlc_oai_api.c
+0
-5
openair2/RRC/LTE/rrc_common.c
openair2/RRC/LTE/rrc_common.c
+0
-1
openair2/RRC/NR/nr_rrc_common.c
openair2/RRC/NR/nr_rrc_common.c
+0
-2
No files found.
openair2/LAYER2/RLC/rlc.h
View file @
b5acd48e
...
...
@@ -184,13 +184,6 @@ rlc_op_status_t rrc_rlc_config_req(const protocol_ctxt_t *const, const srb_flag_
*/
rlc_op_status_t
rrc_rlc_data_req
(
const
protocol_ctxt_t
*
const
,
const
MBMS_flag_t
,
const
rb_id_t
,
mui_t
,
confirm_t
,
sdu_size_t
,
char
*
);
/*! \fn void rrc_rlc_register_rrc ( void (*rrc_data_indP) (const protocol_ctxt_t* const ctxtP, const rb_id_t rb_idP, sdu_size_t sdu_sizeP, char* sduP), void (*rrc_data_confP) (const protocol_ctxt_t* const ctxtP, const rb_id_t rb_idP, mui_t muiP, rlc_tx_status_t statusP)
* \brief This function is called by RRC to register its DATA-INDICATE and DATA-CONFIRM handlers to RLC layer.
* \param[in] rrc_data_indP Pointer on RRC data indicate function.
* \param[in] rrc_data_confP Pointer on RRC data confirm callback function.
*/
void
rrc_rlc_register_rrc
(
rrc_data_ind_cb_t
rrc_data_indP
,
rrc_data_conf_cb_t
rrc_data_confP
);
//-----------------------------------------------------------------------------
// PUBLIC INTERFACE WITH MAC
//-----------------------------------------------------------------------------
...
...
openair2/LAYER2/nr_rlc/nr_rlc_oai_api.c
View file @
b5acd48e
...
...
@@ -1064,11 +1064,6 @@ rlc_op_status_t rrc_rlc_config_req (
return
RLC_OP_STATUS_OK
;
}
void
rrc_rlc_register_rrc
(
rrc_data_ind_cb_t
rrc_data_indP
,
rrc_data_conf_cb_t
rrc_data_confP
)
{
/* nothing to do */
}
void
nr_rlc_remove_ue
(
int
rnti
)
{
LOG_W
(
RLC
,
"remove UE %x
\n
"
,
rnti
);
...
...
openair2/LAYER2/rlc_v2/rlc_oai_api.c
View file @
b5acd48e
...
...
@@ -976,11 +976,6 @@ rlc_op_status_t rrc_rlc_config_req (
return
RLC_OP_STATUS_OK
;
}
void
rrc_rlc_register_rrc
(
rrc_data_ind_cb_t
rrc_data_indP
,
rrc_data_conf_cb_t
rrc_data_confP
)
{
/* nothing to do */
}
rlc_op_status_t
rrc_rlc_remove_ue
(
const
protocol_ctxt_t
*
const
x
)
{
LOG_D
(
RLC
,
"%s:%d:%s: remove UE %ld
\n
"
,
__FILE__
,
__LINE__
,
__FUNCTION__
,
x
->
rntiMaybeUEid
);
...
...
openair2/RRC/LTE/rrc_common.c
View file @
b5acd48e
...
...
@@ -56,7 +56,6 @@ rrc_init_global_param(
)
//-----------------------------------------------------------------------------
{
rrc_rlc_register_rrc
(
rrc_data_ind
,
NULL
);
//register with rlc
DCCH_LCHAN_DESC
.
transport_block_size
=
4
;
DCCH_LCHAN_DESC
.
max_transport_blocks
=
16
;
DCCH_LCHAN_DESC
.
Delay_class
=
1
;
...
...
openair2/RRC/NR/nr_rrc_common.c
View file @
b5acd48e
...
...
@@ -50,8 +50,6 @@ extern mui_t rrc_gNB_mui;
//-----------------------------------------------------------------------------
void
rrc_init_nr_srb_param
(
NR_LCHAN_DESC
*
chan
)
{
rrc_rlc_register_rrc
(
rrc_data_ind
,
NULL
);
//register with rlc
chan
->
transport_block_size
=
4
;
chan
->
max_transport_blocks
=
16
;
chan
->
Delay_class
=
1
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment