osmo-bts-trx: rx_rach_fn(): properly detect handover RACH

Checking if (bi->chan != TRXC_RACH) is not enough to detect HANDOVER
ACCESS.  Receiving this message is only possible on CS channels.

Change-Id: Ice1674fd4fed8c54d605ff19d568f6e46b4c5783
This commit is contained in:
Vadim Yanitskiy 2022-10-04 01:07:41 +07:00 committed by fixeria
parent 8396471638
commit 493ff0000b
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ int rx_rach_fn(struct l1sched_ts *l1ts, const struct trx_ul_burst_ind *bi)
LOGL1SB(DL1P, LOGL_DEBUG, l1ts, bi,
"Received%s RACH (%s): rssi=%d toa256=%d",
(bi->chan != TRXC_RACH) ? " handover" : "",
TRX_CHAN_IS_DEDIC(bi->chan) ? " handover" : "",
get_value_string(rach_synch_seq_names, synch_seq),
bi->rssi, bi->toa256);
if (bi->flags & TRX_BI_F_CI_CB)