aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bsc/bts.c
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2022-04-25 12:20:21 +0200
committerosmith <osmith@sysmocom.de>2022-04-26 12:06:47 +0000
commitd05549307159437ef25db51a05a88ccc08e89437 (patch)
treec86ce98951f67bd476fae920b0d29bf33a59392f /src/osmo-bsc/bts.c
parent5586149d73fb127724e70da2b97daa1a36550a55 (diff)
gsm_data: add gsm_set_bts_model
Let all changes of the bts model go through this function, so we can in a future patch copy over the bts model's features to the bts. Related: SYS#5922, OS#5538 Change-Id: I8475c8c20eb72411e8ca820181d1c8603c22a56d
Diffstat (limited to 'src/osmo-bsc/bts.c')
-rw-r--r--src/osmo-bsc/bts.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/osmo-bsc/bts.c b/src/osmo-bsc/bts.c
index 87ed44f44..774384f1d 100644
--- a/src/osmo-bsc/bts.c
+++ b/src/osmo-bsc/bts.c
@@ -612,6 +612,12 @@ struct gsm_lchan *gsm_bts_get_cbch(struct gsm_bts *bts)
return NULL;
}
+int gsm_set_bts_model(struct gsm_bts *bts, struct gsm_bts_model *model)
+{
+ bts->model = model;
+ return 0;
+}
+
int gsm_set_bts_type(struct gsm_bts *bts, enum gsm_bts_type type)
{
struct gsm_bts_model *model;
@@ -624,7 +630,7 @@ int gsm_set_bts_type(struct gsm_bts *bts, enum gsm_bts_type type)
return -EINVAL;
bts->type = type;
- bts->model = model;
+ gsm_set_bts_model(bts, model);
if (model->start && !model->started) {
int ret = model->start(bts->network);