pcu_sock: Don't re-implement core functionality like gsm_bts_trx_num()

Change-Id: I5ea506c8240dac124ccf5522d02ba18e4f0cb90d
This commit is contained in:
Harald Welte 2016-11-17 18:10:10 +01:00
parent b4999b60d4
commit 67798617b5
1 changed files with 2 additions and 14 deletions

View File

@ -58,18 +58,6 @@ static const char *sapi_string[] = {
[PCU_IF_SAPI_PTCCH] = "PTCCH",
};
static struct gsm_bts_trx *trx_by_nr(struct gsm_bts *bts, uint8_t trx_nr)
{
struct gsm_bts_trx *trx;
llist_for_each_entry(trx, &bts->trx_list, list) {
if (trx->nr == trx_nr)
return trx;
}
return NULL;
}
/* Check if BTS has a PCU connection */
static bool pcu_connected(struct gsm_bts *bts)
{
@ -232,7 +220,7 @@ static int pcu_tx_info_ind(struct gsm_bts *bts)
}
for (i = 0; i < 8; i++) {
trx = trx_by_nr(bts, i);
trx = gsm_bts_trx_num(bts, i);
if (!trx)
break;
info_ind->trx[i].pdch_mask = 0;
@ -427,7 +415,7 @@ static void pcu_sock_close(struct pcu_sock_state *state)
/* release PDCH */
for (i = 0; i < 8; i++) {
trx = trx_by_nr(bts, i);
trx = gsm_bts_trx_num(bts, i);
if (!trx)
break;
for (j = 0; j < 8; j++) {