Commit 7203e5ab authored by Cedric Roux's avatar Cedric Roux

nr pdcp: minor: set function scope to static

parent 07ee33f0
...@@ -357,7 +357,7 @@ static void check_t_reordering(nr_pdcp_entity_t *entity) ...@@ -357,7 +357,7 @@ static void check_t_reordering(nr_pdcp_entity_t *entity)
} }
} }
void nr_pdcp_entity_set_time(struct nr_pdcp_entity_t *entity, uint64_t now) static void nr_pdcp_entity_set_time(struct nr_pdcp_entity_t *entity, uint64_t now)
{ {
entity->t_current = now; entity->t_current = now;
...@@ -379,7 +379,7 @@ static void deliver_all_sdus(nr_pdcp_entity_t *entity) ...@@ -379,7 +379,7 @@ static void deliver_all_sdus(nr_pdcp_entity_t *entity)
} }
} }
void nr_pdcp_entity_suspend(nr_pdcp_entity_t *entity) static void nr_pdcp_entity_suspend(nr_pdcp_entity_t *entity)
{ {
entity->tx_next = 0; entity->tx_next = 0;
if (entity->t_reordering_start != 0) { if (entity->t_reordering_start != 0) {
......
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