osmo-bts-trx/trx_if.c: dropping Tx bursts is a noticeable event

Change-Id: Ia954b797a9bb90660b6548ec0ffb218a1dcff37a
This commit is contained in:
Vadim Yanitskiy 2019-06-01 13:43:21 +07:00
parent e05279a296
commit e50903df9d
1 changed files with 1 additions and 2 deletions

View File

@ -688,8 +688,7 @@ int trx_if_send_burst(struct trx_l1h *l1h, uint8_t tn, uint32_t fn, uint8_t pwr,
if (transceiver_available && llist_empty(&l1h->trx_ctrl_list)) {
send(l1h->trx_ofd_data.fd, buf, nbits + 6, 0);
} else
LOGP(DTRX, LOGL_DEBUG, "Ignoring TX data, transceiver "
"offline.\n");
LOGP(DTRX, LOGL_ERROR, "Ignoring TX data, transceiver offline.\n");
return 0;
}