aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2023-09-30 06:15:45 +0700
committerfixeria <vyanitskiy@sysmocom.de>2023-10-03 13:36:40 +0000
commit40ba43a2e84c2dd35794032b4921ae112afc2482 (patch)
tree608ac8fec2b7649519e9abc00572bca5eced94d3
parentc6211a8becf806f80800ed091e2c96b4219b43fe (diff)
osmo-bts-trx: rx_tchh_fn(): fix copy-pasted comment
-rw-r--r--src/osmo-bts-trx/sched_lchan_tchh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmo-bts-trx/sched_lchan_tchh.c b/src/osmo-bts-trx/sched_lchan_tchh.c
index 2f384af8..23e59cf8 100644
--- a/src/osmo-bts-trx/sched_lchan_tchh.c
+++ b/src/osmo-bts-trx/sched_lchan_tchh.c
@@ -323,7 +323,7 @@ int rx_tchh_fn(struct l1sched_ts *l1ts, const struct trx_ul_burst_ind *bi)
case GSM48_CMODE_DATA_6k0:
if (!sched_tchh_ul_csd_map[bi->fn % 26])
return 0; /* CSD: skip decoding attempt, need 2 more bursts */
- /* FACCH/F does not steal TCH/H4.8 frames, but only disturbs some bits */
+ /* FACCH/H does not steal TCH/H4.8 frames, but only disturbs some bits */
decode_hr_facch(l1ts, bi);
rc = gsm0503_tch_hr48_decode(&tch_data[0], BUFPOS(bursts_p, 0),
&n_errors, &n_bits_total);
@@ -333,7 +333,7 @@ int rx_tchh_fn(struct l1sched_ts *l1ts, const struct trx_ul_burst_ind *bi)
case GSM48_CMODE_DATA_3k6:
if (!sched_tchh_ul_csd_map[bi->fn % 26])
return 0; /* CSD: skip decoding attempt, need 2 more bursts */
- /* FACCH/F does not steal TCH/H2.4 frames, but only disturbs some bits */
+ /* FACCH/H does not steal TCH/H2.4 frames, but only disturbs some bits */
decode_hr_facch(l1ts, bi);
rc = gsm0503_tch_hr24_decode(&tch_data[0], BUFPOS(bursts_p, 0),
&n_errors, &n_bits_total);