misc: Fix some typos sed -i s,ressources,resources,g

This commit is contained in:
Holger Hans Peter Freyther 2013-10-16 16:33:00 +02:00
parent 985806030d
commit 483f77a275
2 changed files with 4 additions and 4 deletions

View File

@ -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,

View File

@ -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;