dexter has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-bsc/+/31791 )
Change subject: timeslot_fsm: fix PDCH activation ......................................................................
timeslot_fsm: fix PDCH activation
All non ericsson BTSs we support use a BTS co-located PCU, so we must not depend on a PCU connection in those cases.
Change-Id: I296dfacb451d7b9b5ef1cec940bc1a577f3c43ad --- M src/osmo-bsc/timeslot_fsm.c 1 file changed, 13 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/91/31791/1
diff --git a/src/osmo-bsc/timeslot_fsm.c b/src/osmo-bsc/timeslot_fsm.c index 16d7360..aa5e0db 100644 --- a/src/osmo-bsc/timeslot_fsm.c +++ b/src/osmo-bsc/timeslot_fsm.c @@ -341,7 +341,7 @@ return; }
- if (!pcu_connected(bts)) { + if (is_ericsson_bts(bts) && !pcu_connected(bts)) { LOG_TS(ts, LOGL_DEBUG, "PCU not connected: not activating PDCH.\n"); return; }