aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2020-10-20 16:54:58 +0200
committerlaforge <laforge@osmocom.org>2020-10-21 11:54:23 +0000
commit16333bb58c361854d4e8d13b23872b8063faf842 (patch)
tree24efe30005da1b3a0ed5ca7357907127c29227d1 /src
parent72b90883f9913a29581589cb5954e0f02ca63778 (diff)
lapdm: Drop log lines printing fmt=B
Diffstat (limited to 'src')
-rw-r--r--src/gsm/lapdm.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gsm/lapdm.c b/src/gsm/lapdm.c
index bfd6d263..8620cabe 100644
--- a/src/gsm/lapdm.c
+++ b/src/gsm/lapdm.c
@@ -735,11 +735,9 @@ static int l2_ph_data_ind(struct msgb *msg, struct lapdm_entity *le,
&& LAPDm_CTRL_U_BITS(msg->l2h[3]) == 0) {
mctx.lapdm_fmt = LAPDm_FMT_B4;
n201 = N201_B4;
- LOGP(DLLAPD, LOGL_INFO, "fmt=B4\n");
} else {
mctx.lapdm_fmt = LAPDm_FMT_B;
n201 = N201_AB_SACCH;
- LOGP(DLLAPD, LOGL_INFO, "fmt=B\n");
}
/* SACCH frames have a two-byte L1 header that
* OsmocomBB L1 doesn't strip */
@@ -750,7 +748,6 @@ static int l2_ph_data_ind(struct msgb *msg, struct lapdm_entity *le,
sapi = (msg->l2h[0] >> 2) & 7;
} else {
mctx.lapdm_fmt = LAPDm_FMT_B;
- LOGP(DLLAPD, LOGL_INFO, "fmt=B\n");
n201 = N201_AB_SDCCH;
sapi = (msg->l2h[0] >> 2) & 7;
}
@@ -850,7 +847,6 @@ static int l2_ph_data_ind(struct msgb *msg, struct lapdm_entity *le,
break;
case LAPDm_FMT_Bbis:
/* directly pass up to layer3 */
- LOGP(DLLAPD, LOGL_INFO, "fmt=Bbis UI\n");
msg->l3h = msg->l2h;
msgb_pull_to_l3(msg);
rc = send_rslms_rll_l3(RSL_MT_UNIT_DATA_IND, &mctx, msg);