pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-bsc/+/28032 )
Change subject: Drop duplicate function helper
......................................................................
Drop duplicate function helper
Change-Id: Idac049d07bf105b85a71af2f15f56552c453a370
---
M src/osmo-bsc/osmo_bsc_main.c
1 file changed, 1 insertion(+), 11 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/32/28032/1
diff --git a/src/osmo-bsc/osmo_bsc_main.c b/src/osmo-bsc/osmo_bsc_main.c
index 3c8f381..12ddbd2 100644
--- a/src/osmo-bsc/osmo_bsc_main.c
+++ b/src/osmo-bsc/osmo_bsc_main.c
@@ -367,16 +367,6 @@
abis_rsl_chan_rqd_queue_flush(trx->bts);
}
-static void all_ts_dispatch_event(struct gsm_bts_trx *trx, uint32_t event)
-{
- int ts_i;
- for (ts_i = 0; ts_i < ARRAY_SIZE(trx->ts); ts_i++) {
- struct gsm_bts_trx_ts *ts = &trx->ts[ts_i];
- if (ts->fi)
- osmo_fsm_inst_dispatch(ts->fi, event, 0);
- }
-}
-
struct osmo_timer_list update_connection_stats_timer;
/* Periodically call bsc_update_connection_stats() to keep stat items updated.
@@ -474,7 +464,7 @@
} else if (isd->link_type == E1INP_SIGN_RSL) {
rate_ctr_inc(rate_ctr_group_get_ctr(trx->bts->bts_ctrs, BTS_CTR_BTS_RSL_FAIL));
acc_ramp_abort(&trx->bts->acc_ramp);
- all_ts_dispatch_event(trx, TS_EV_RSL_DOWN);
+ gsm_trx_all_ts_dispatch(trx, TS_EV_RSL_DOWN, NULL);
if (trx->nr == 0)
osmo_timer_del(&trx->bts->cbch_timer);
}
--
To view, visit
https://gerrit.osmocom.org/c/osmo-bsc/+/28032
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Change-Id: Idac049d07bf105b85a71af2f15f56552c453a370
Gerrit-Change-Number: 28032
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: newchange