scheduler: log pchan value in trx_sched_set_pchan()

Change-Id: Ia31e53552208a9d57e2fc5473440840d38945d00
This commit is contained in:
Vadim Yanitskiy 2023-03-20 03:59:11 +07:00
parent 767f690f05
commit 4bdc5a74cc
1 changed files with 2 additions and 2 deletions

View File

@ -1013,8 +1013,8 @@ int trx_sched_set_pchan(struct gsm_bts_trx_ts *ts, enum gsm_phys_chan_config pch
struct l1sched_ts *l1ts = ts->priv;
int i = find_sched_mframe_idx(pchan, ts->nr);
if (i < 0) {
LOGP(DL1C, LOGL_NOTICE, "%s Failed to configure multiframe\n",
gsm_ts_name(ts));
LOGP(DL1C, LOGL_NOTICE, "%s Failed to configure multiframe (pchan=0x%02x)\n",
gsm_ts_name(ts), pchan);
return -ENOTSUP;
}
l1ts->mf_index = i;