From 78458a3811af63829039e327a8f77f74055ae03e Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Sun, 24 Jul 2016 15:16:59 +0200 Subject: sysmo/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: I09cc81e79661e8084aeebf8132435c207b2cf422 --- src/osmo-bts-sysmo/oml.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/osmo-bts-sysmo/oml.c') diff --git a/src/osmo-bts-sysmo/oml.c b/src/osmo-bts-sysmo/oml.c index 01425aa4..00c00fe5 100644 --- a/src/osmo-bts-sysmo/oml.c +++ b/src/osmo-bts-sysmo/oml.c @@ -501,7 +501,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); } @@ -1714,7 +1714,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