From b0f77ce68548b90f4252dfee61f96e58e15aa7e3 Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Sun, 24 Jul 2016 15:42:47 +0200 Subject: 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 --- src/osmo-bts-litecell15/oml.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/osmo-bts-litecell15') 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: -- cgit v1.2.3