aboutsummaryrefslogtreecommitdiffstats
path: root/src/gprs_rlcmac_sched.cpp
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-10-16 16:33:00 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-10-16 16:33:00 +0200
commit483f77a27538caa25d274c9a5e4229c5c3bbccee (patch)
treed3a7636cd55ea08e73ec21efbe4ef08f092034ce /src/gprs_rlcmac_sched.cpp
parent985806030db9e86eacc888217068d87d315962e2 (diff)
misc: Fix some typos sed -i s,ressources,resources,g
Diffstat (limited to 'src/gprs_rlcmac_sched.cpp')
-rw-r--r--src/gprs_rlcmac_sched.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gprs_rlcmac_sched.cpp b/src/gprs_rlcmac_sched.cpp
index 9b31fbc3..6290c5d8 100644
--- a/src/gprs_rlcmac_sched.cpp
+++ b/src/gprs_rlcmac_sched.cpp
@@ -98,8 +98,8 @@ uint8_t sched_select_uplink(uint8_t trx, uint8_t ts, uint32_t fn,
/* no TBF for this tfi, go next */
if (!tbf)
continue;
- /* no UL ressources needed, go next */
- /* we don't need to give ressources in FINISHED state,
+ /* no UL resources needed, go next */
+ /* we don't need to give resources in FINISHED state,
* because we have received all blocks and only poll
* for packet control ack. */
if (tbf->state != GPRS_RLCMAC_FLOW)
@@ -180,7 +180,7 @@ struct msgb *sched_select_downlink(uint8_t trx, uint8_t ts, uint32_t fn,
/* no DL TBF, go next */
if (tbf->direction != GPRS_RLCMAC_DL_TBF)
continue;
- /* no DL ressources needed, go next */
+ /* no DL resources needed, go next */
if (tbf->state != GPRS_RLCMAC_FLOW
&& tbf->state != GPRS_RLCMAC_FINISHED)
continue;