aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bsc/bsc_init.c
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2021-11-13 23:22:27 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2021-11-16 12:06:53 +0100
commitd13ef633d2d905766e33ca46593c7ad7c8fbd767 (patch)
treef78875e9ed59aec17ba78953900cfda6760b6901 /src/osmo-bsc/bsc_init.c
parent7f7c83a7de8c51d26b0d60c923d916a267f2efbc (diff)
move time_cc to libosmocore osmo_time_cc
Diffstat (limited to 'src/osmo-bsc/bsc_init.c')
-rw-r--r--src/osmo-bsc/bsc_init.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osmo-bsc/bsc_init.c b/src/osmo-bsc/bsc_init.c
index 93287072d..0412f6b6b 100644
--- a/src/osmo-bsc/bsc_init.c
+++ b/src/osmo-bsc/bsc_init.c
@@ -120,7 +120,7 @@ static struct gsm_network *bsc_network_init(void *ctx)
if (!net->bts_unknown_statg)
goto err_free_all;
- net->all_allocated_sdcch = (struct time_cc){
+ net->all_allocated_sdcch = (struct osmo_time_cc){
.cfg = {
.gran_usec = 1*1000000,
.forget_sum_usec = 60*1000000,
@@ -131,7 +131,7 @@ static struct gsm_network *bsc_network_init(void *ctx)
.T_defs = net->T_defs,
},
};
- net->all_allocated_static_sdcch = (struct time_cc){
+ net->all_allocated_static_sdcch = (struct osmo_time_cc){
.cfg = {
.gran_usec = 1*1000000,
.forget_sum_usec = 60*1000000,
@@ -142,7 +142,7 @@ static struct gsm_network *bsc_network_init(void *ctx)
.T_defs = net->T_defs,
},
};
- net->all_allocated_tch = (struct time_cc){
+ net->all_allocated_tch = (struct osmo_time_cc){
.cfg = {
.gran_usec = 1*1000000,
.forget_sum_usec = 60*1000000,
@@ -153,7 +153,7 @@ static struct gsm_network *bsc_network_init(void *ctx)
.T_defs = net->T_defs,
},
};
- net->all_allocated_static_tch = (struct time_cc){
+ net->all_allocated_static_tch = (struct osmo_time_cc){
.cfg = {
.gran_usec = 1*1000000,
.forget_sum_usec = 60*1000000,