aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2016-07-24 15:42:47 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2016-07-25 22:13:44 +0200
commitb0f77ce68548b90f4252dfee61f96e58e15aa7e3 (patch)
tree70dbcdfb09a403275a6871905e6cfb0f3c466c94
parent090a41f897091f3386b1517d33e12eca4ef5a528 (diff)
lc15/oml.c: rename ts_connect() to ts_opstart()
ts_connect() is only called during OPSTART. Name it such because a special case for OPSTART will be added there for dyn TS. Change-Id: Iba6880d94142096a8371b08f7404035912cadbb0
-rw-r--r--src/osmo-bts-litecell15/oml.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmo-bts-litecell15/oml.c b/src/osmo-bts-litecell15/oml.c
index 4d88ac58..c3bf800d 100644
--- a/src/osmo-bts-litecell15/oml.c
+++ b/src/osmo-bts-litecell15/oml.c
@@ -494,7 +494,7 @@ static int ts_connect_as(struct gsm_bts_trx_ts *ts,
return l1if_gsm_req_compl(fl1h, msg, cb, NULL);
}
-static int ts_connect(struct gsm_bts_trx_ts *ts)
+static int ts_opstart(struct gsm_bts_trx_ts *ts)
{
return ts_connect_as(ts, ts->pchan, opstart_compl_cb, NULL);
}
@@ -1695,7 +1695,7 @@ int bts_model_opstart(struct gsm_bts *bts, struct gsm_abis_mo *mo,
rc = trx_init(obj);
break;
case NM_OC_CHANNEL:
- rc = ts_connect(obj);
+ rc = ts_opstart(obj);
break;
case NM_OC_BTS:
case NM_OC_SITE_MANAGER: