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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-RAN
Commits
c00b5b8c
Commit
c00b5b8c
authored
Jan 14, 2026
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove function decode_cellGroupConfig since it is declared but never used anywhere
parent
699a5453
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
9 deletions
+0
-9
openair2/LAYER2/NR_MAC_gNB/nr_radio_config.c
openair2/LAYER2/NR_MAC_gNB/nr_radio_config.c
+0
-8
openair2/LAYER2/NR_MAC_gNB/nr_radio_config.h
openair2/LAYER2/NR_MAC_gNB/nr_radio_config.h
+0
-1
No files found.
openair2/LAYER2/NR_MAC_gNB/nr_radio_config.c
View file @
c00b5b8c
...
@@ -3944,14 +3944,6 @@ int encode_cellGroupConfig(NR_CellGroupConfig_t *cellGroupConfig, uint8_t *buffe
...
@@ -3944,14 +3944,6 @@ int encode_cellGroupConfig(NR_CellGroupConfig_t *cellGroupConfig, uint8_t *buffe
return
(
enc_rval
.
encoded
+
7
)
/
8
;
return
(
enc_rval
.
encoded
+
7
)
/
8
;
}
}
NR_CellGroupConfig_t
*
decode_cellGroupConfig
(
const
uint8_t
*
buffer
,
int
buffer_size
)
{
NR_CellGroupConfig_t
*
cellGroupConfig
=
NULL
;
asn_dec_rval_t
rval
=
uper_decode
(
NULL
,
&
asn_DEF_NR_CellGroupConfig
,
(
void
**
)
&
cellGroupConfig
,
buffer
,
buffer_size
,
0
,
0
);
AssertFatal
(
rval
.
code
==
RC_OK
,
"could not decode cellGroupConfig
\n
"
);
return
cellGroupConfig
;
}
static
NR_ServingCellConfigCommon_t
*
clone_ServingCellConfigCommon
(
const
NR_ServingCellConfigCommon_t
*
scc
)
static
NR_ServingCellConfigCommon_t
*
clone_ServingCellConfigCommon
(
const
NR_ServingCellConfigCommon_t
*
scc
)
{
{
if
(
scc
==
NULL
)
if
(
scc
==
NULL
)
...
...
openair2/LAYER2/NR_MAC_gNB/nr_radio_config.h
View file @
c00b5b8c
...
@@ -97,7 +97,6 @@ void update_cellGroupConfig(NR_CellGroupConfig_t *cellGroupConfig,
...
@@ -97,7 +97,6 @@ void update_cellGroupConfig(NR_CellGroupConfig_t *cellGroupConfig,
const
nr_mac_config_t
*
configuration
,
const
nr_mac_config_t
*
configuration
,
const
NR_ServingCellConfigCommon_t
*
scc
);
const
NR_ServingCellConfigCommon_t
*
scc
);
int
encode_cellGroupConfig
(
NR_CellGroupConfig_t
*
cellGroupConfig
,
uint8_t
*
buffer
,
int
max_buffer_size
);
int
encode_cellGroupConfig
(
NR_CellGroupConfig_t
*
cellGroupConfig
,
uint8_t
*
buffer
,
int
max_buffer_size
);
NR_CellGroupConfig_t
*
decode_cellGroupConfig
(
const
uint8_t
*
buffer
,
int
max_buffer_size
);
/* Note: this function returns a new CellGroupConfig for a user with given
/* Note: this function returns a new CellGroupConfig for a user with given
* configuration, but it will also overwrite the ServingCellConfig passed in
* configuration, but it will also overwrite the ServingCellConfig passed in
...
...
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