aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-litecell15/l1_if.c
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2017-07-31 19:20:45 +0200
committerHarald Welte <laforge@gnumonks.org>2017-08-01 10:22:55 +0000
commitd208132ab90e3314ae5fbd9830bf43c1b3fa1893 (patch)
tree9236f91e10bd9a63d634720e45c6f43bf2937315 /src/osmo-bts-litecell15/l1_if.c
parentdc469994f34d365e8b607ce42a1de9d63fa57f40 (diff)
lc-15, sysmo: l1_if: print name on PH-DATA.ind unknwon sapi
Diffstat (limited to 'src/osmo-bts-litecell15/l1_if.c')
-rw-r--r--src/osmo-bts-litecell15/l1_if.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmo-bts-litecell15/l1_if.c b/src/osmo-bts-litecell15/l1_if.c
index cb3efab7..a3b9556b 100644
--- a/src/osmo-bts-litecell15/l1_if.c
+++ b/src/osmo-bts-litecell15/l1_if.c
@@ -934,8 +934,8 @@ static int handle_ph_data_ind(struct lc15l1_hdl *fl1, GsmL1_PhDataInd_t *data_in
chan_nr = chan_nr_by_sapi(&trx->ts[data_ind->u8Tn], data_ind->sapi,
data_ind->subCh, data_ind->u8Tn, data_ind->u32Fn);
if (!chan_nr) {
- LOGP(DL1C, LOGL_ERROR, "PH-DATA-INDICATION for unknown sapi "
- "%d\n", data_ind->sapi);
+ LOGP(DL1C, LOGL_ERROR, "PH-DATA-INDICATION for unknown sapi %s (%d)\n",
+ get_value_string(lc15bts_l1sapi_names, data_ind->sapi), data_ind->sapi);
msgb_free(l1p_msg);
return ENOTSUP;
}