fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmocom-bb/+/30333 )
Change subject: mobile: gsm48_rr_tx_voice(): drop TCH/F channel limitation ......................................................................
mobile: gsm48_rr_tx_voice(): drop TCH/F channel limitation
Change-Id: I06e84ad47bafd4676af0e136b825e77471587b23 Related: OS#5599 --- M src/host/layer23/src/mobile/gsm48_rr.c 1 file changed, 0 insertions(+), 7 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/33/30333/1
diff --git a/src/host/layer23/src/mobile/gsm48_rr.c b/src/host/layer23/src/mobile/gsm48_rr.c index 223188d..8eaf0f6 100644 --- a/src/host/layer23/src/mobile/gsm48_rr.c +++ b/src/host/layer23/src/mobile/gsm48_rr.c @@ -5711,7 +5711,6 @@ int gsm48_rr_tx_voice(struct osmocom_ms *ms, struct msgb *msg) { struct gsm48_rrlayer *rr = &ms->rrlayer; - uint8_t ch_type, ch_subch, ch_ts; struct l1ctl_traffic_req *tr;
if (!rr->dm_est) { @@ -5719,12 +5718,6 @@ goto error; }
- rsl_dec_chan_nr(rr->cd_now.chan_nr, &ch_type, &ch_subch, &ch_ts); - if (ch_type != RSL_CHAN_Bm_ACCHs) { - LOGP(DRR, LOGL_INFO, "Current channel is not (yet) TCH/F\n"); - goto error; - } - tr = (struct l1ctl_traffic_req *)msg->l2h; if (voice_frame_verify(rr->cd_now.mode, tr->data, msgb_l2len(msg)) < 0) goto error;