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
promise
OpenXG-RAN
Commits
600cce17
Commit
600cce17
authored
Mar 29, 2016
by
Cedric Roux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more warning removals
parent
87d14247
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
2 deletions
+6
-2
openair2/LAYER2/PDCP_v10.1.0/pdcp_fifo.c
openair2/LAYER2/PDCP_v10.1.0/pdcp_fifo.c
+1
-1
openair2/RRC/LITE/rrc_eNB.c
openair2/RRC/LITE/rrc_eNB.c
+1
-0
openair3/NAS/TOOLS/ue_data.c
openair3/NAS/TOOLS/ue_data.c
+1
-1
openair3/NAS/UE/EMM/SAP/emm_reg.c
openair3/NAS/UE/EMM/SAP/emm_reg.c
+3
-0
No files found.
openair2/LAYER2/PDCP_v10.1.0/pdcp_fifo.c
View file @
600cce17
...
...
@@ -494,7 +494,7 @@ int pdcp_fifo_read_input_sdus (const protocol_ctxt_t* const ctxt_pP)
pdcp_read_header_g.inst + oai_emulation.info.first_enb_local;*/
#else // OAI_EMU
pdcp_read_header_g
.
inst
=
0
;
#warning "TO DO CORRCT VALUES FOR ue mod id, enb mod id"
//
#warning "TO DO CORRCT VALUES FOR ue mod id, enb mod id"
ctxt
.
frame
=
ctxt_cpy
.
frame
;
ctxt
.
enb_flag
=
ctxt_cpy
.
enb_flag
;
...
...
openair2/RRC/LITE/rrc_eNB.c
View file @
600cce17
...
...
@@ -1294,6 +1294,7 @@ rrc_eNB_generate_defaultRRCConnectionReconfiguration(
/* avoid gcc warnings */
(
void
)
PDCP_rlc_AM
;
(
void
)
PDCP_rlc_UM
;
#ifdef RRC_DEFAULT_RAB_IS_AM // EXMIMO_IOT
PDCP_rlc_AM
=
CALLOC
(
1
,
sizeof
(
*
PDCP_rlc_AM
));
...
...
openair3/NAS/TOOLS/ue_data.c
View file @
600cce17
...
...
@@ -481,7 +481,7 @@ static void _display_emm_data(const emm_nvdata_t* data)
data
->
imsi
.
u
.
num
.
digit13
,
data
->
imsi
.
u
.
num
.
digit14
);
}
else
{
printf
(
"%u%u%u.%u%u%u.%u%u%u%u%u%u%u%u
\n
"
,
printf
(
"%u%u%u.%u%u%u.%u%u%u%u%u%u%u%u
%u
\n
"
,
data
->
imsi
.
u
.
num
.
digit1
,
data
->
imsi
.
u
.
num
.
digit2
,
data
->
imsi
.
u
.
num
.
digit3
,
...
...
openair3/NAS/UE/EMM/SAP/emm_reg.c
View file @
600cce17
...
...
@@ -114,6 +114,9 @@ int emm_reg_send(const emm_reg_t *msg)
emm_reg_primitive_t
primitive
=
msg
->
primitive
;
assert
(
(
primitive
>
_EMMREG_START
)
&&
(
primitive
<
_EMMREG_END
));
/* avoid gcc warnings */
(
void
)
primitive
;
/* Execute the EMM procedure */
rc
=
emm_fsm_process
(
msg
);
...
...
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