From 9c2512a638368f5b74c275c38d404414cf2d8b02 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Fri, 1 Apr 2022 18:27:04 +0200 Subject: [PATCH] pdch is_enabled: Use API getter instead of accessing field directly Change-Id: I389f42ef2e95d28643ec51771e46d083d4e20057 --- src/gprs_bssgp_pcu.c | 2 +- src/pcu_l1_if.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gprs_bssgp_pcu.c b/src/gprs_bssgp_pcu.c index bf82fc4f..8fd6d850 100644 --- a/src/gprs_bssgp_pcu.c +++ b/src/gprs_bssgp_pcu.c @@ -782,7 +782,7 @@ static unsigned count_pdch(const struct gprs_rlcmac_bts *bts) for (ts_no = 0; ts_no < ARRAY_SIZE(trx->pdch); ++ts_no) { const struct gprs_rlcmac_pdch *pdch = &trx->pdch[ts_no]; - if (pdch->m_is_enabled) + if (pdch_is_enabled(pdch)) num_pdch += 1; } } diff --git a/src/pcu_l1_if.cpp b/src/pcu_l1_if.cpp index d0698d9e..221a1f74 100644 --- a/src/pcu_l1_if.cpp +++ b/src/pcu_l1_if.cpp @@ -540,7 +540,7 @@ int pcu_rx_rts_req_ptcch(struct gprs_rlcmac_bts *bts, uint8_t trx, uint8_t ts, /* Make sure PDCH time-slot is enabled */ pdch = &bts->trx[trx].pdch[ts]; - if (!pdch->m_is_enabled) + if (!pdch_is_enabled(pdch)) return -EAGAIN; /* If there's no TBF attached to this PDCH, we can skip Tx of PTCCH