aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2016-01-09 18:50:22 +0100
committerHarald Welte <laforge@gnumonks.org>2016-01-16 17:49:13 +0100
commitf9de18ea15a988afb13e487955811884beecd8c8 (patch)
tree248ea6b01b24624adbfe0f6734a9d6eba07793f5
parent97cb71971a345c7e96502d4000afc468bc3dd3b8 (diff)
TRX: the L1SAP queue contains mac blocks, not bursts (cosmetic)
-rw-r--r--src/osmo-bts-trx/scheduler.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmo-bts-trx/scheduler.c b/src/osmo-bts-trx/scheduler.c
index df91849b..1710b4e5 100644
--- a/src/osmo-bts-trx/scheduler.c
+++ b/src/osmo-bts-trx/scheduler.c
@@ -647,7 +647,7 @@ static ubit_t *tx_data_fn(struct trx_l1h *l1h, uint8_t tn, uint32_t fn,
goto send_burst;
}
- /* get burst from queue */
+ /* get mac block from queue */
msg = dequeue_prim(l1h, tn, fn, chan);
if (msg)
goto got_msg;
@@ -732,7 +732,7 @@ static ubit_t *tx_pdtch_fn(struct trx_l1h *l1h, uint8_t tn, uint32_t fn,
goto send_burst;
}
- /* get burst from queue */
+ /* get mac block from queue */
msg = dequeue_prim(l1h, tn, fn, chan);
if (msg)
goto got_msg;