aboutsummaryrefslogtreecommitdiffstats
path: root/src
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
parent985806030db9e86eacc888217068d87d315962e2 (diff)
misc: Fix some typos sed -i s,ressources,resources,g
Diffstat (limited to 'src')
-rw-r--r--src/gprs_rlcmac.cpp2
-rw-r--r--src/gprs_rlcmac_sched.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/gprs_rlcmac.cpp b/src/gprs_rlcmac.cpp
index 01898339..2fdc573c 100644
--- a/src/gprs_rlcmac.cpp
+++ b/src/gprs_rlcmac.cpp
@@ -174,7 +174,7 @@ void debug_diagram(int diag, const char *format, ...)
}
#endif
-/* FIXME: spread ressources over multiple TRX. Also add option to use same
+/* FIXME: spread resources over multiple TRX. Also add option to use same
* TRX in case of existing TBF for TLLI in the other direction. */
/* search for free TFI and return TFI, TRX */
int tfi_find_free(struct gprs_rlcmac_bts *bts, enum gprs_rlcmac_tbf_direction dir,
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;