aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-10-23 13:39:48 +0300
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-10-23 15:42:32 +0300
commit778aaedb952739af3c75901d94e735038b9a2fc7 (patch)
tree9da0f6536b6746d9dcbc30cd944ebc23e5a23515 /src
parent991020c049c63768e147d49bd2918c2d2e0f6dcb (diff)
lchan: introduce and use lchan_is_tch() helper
Diffstat (limited to 'src')
-rw-r--r--src/common/lchan.c2
-rw-r--r--src/common/rsl.c3
2 files changed, 2 insertions, 3 deletions
diff --git a/src/common/lchan.c b/src/common/lchan.c
index c2b0144b..29fd2470 100644
--- a/src/common/lchan.c
+++ b/src/common/lchan.c
@@ -67,7 +67,7 @@ static int t200_by_lchan(int *t200_ms_dcch, int *t200_ms_acch, struct gsm_lchan
t200_ms_acch[DL_SAPI0] = bts->t200_ms[T200_SACCH_SDCCH] + fn_advance_ms;
t200_ms_acch[DL_SAPI3] = bts->t200_ms[T200_SACCH_SDCCH] + fn_advance_ms;
- if (lchan->rep_acch_cap.dl_facch_all && (lchan->type == GSM_LCHAN_TCH_F || lchan->type == GSM_LCHAN_TCH_H)) {
+ if (lchan->rep_acch_cap.dl_facch_all && lchan_is_tch(lchan)) {
t200_ms_acch[DL_SAPI0] *= 2;
t200_ms_acch[DL_SAPI3] *= 2;
}
diff --git a/src/common/rsl.c b/src/common/rsl.c
index e8f9aa0d..c100687c 100644
--- a/src/common/rsl.c
+++ b/src/common/rsl.c
@@ -3579,8 +3579,7 @@ int lapdm_rll_tx_cb(struct msgb *msg, struct lapdm_entity *le, void *ctx)
rsl_msg_name(rh->msg_type));
/* REL_IND handling */
- if (rh->msg_type == RSL_MT_REL_IND &&
- (lchan->type == GSM_LCHAN_TCH_F || lchan->type == GSM_LCHAN_TCH_H)) {
+ if (rh->msg_type == RSL_MT_REL_IND && lchan_is_tch(lchan)) {
LOGPLCHAN(lchan, DRSL, LOGL_INFO,
"Scheduling %s to L3 in next associated TCH-RTS.ind\n",
rsl_msg_name(rh->msg_type));