Fix: tfi_alloc() has some signed attributes

This commit is contained in:
Andreas Eversberg 2012-08-07 15:31:16 +02:00
parent 14db19ed11
commit 309ce74376
2 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ extern void *tall_pcu_ctx;
* TRX in case of existing TBF for TLLI in the other direction. */
/* search for free TFI and return TFI, TRX and first TS */
int tfi_alloc(enum gprs_rlcmac_tbf_direction dir, uint8_t *_trx, uint8_t *_ts,
uint8_t use_trx, uint8_t first_ts)
int8_t use_trx, int8_t first_ts)
{
struct gprs_rlcmac_bts *bts = gprs_rlcmac_bts;
struct gprs_rlcmac_pdch *pdch;

View File

@ -229,7 +229,7 @@ struct gprs_rlcmac_paging {
};
int tfi_alloc(enum gprs_rlcmac_tbf_direction dir, uint8_t *_trx, uint8_t *_ts,
uint8_t use_trx, uint8_t first_ts);
int8_t use_trx, int8_t first_ts);
struct gprs_rlcmac_tbf *tbf_alloc(struct gprs_rlcmac_tbf *old_tbf,
enum gprs_rlcmac_tbf_direction dir, uint8_t tfi, uint8_t trx,