pcu_l1_if: use only the term "direct PHY access"

The log messages and code comments sometimes refer to the direct PHY
access feature as "direct DSP access". Lets use only the term "direct
PHY access"

Change-Id: I121ad85cd8581c40f390dbaad0d6a028d68b095e
This commit is contained in:
Philipp Maier 2023-02-27 15:11:29 +01:00
parent 7f5393ca6e
commit 0cb3b2aa16
1 changed files with 3 additions and 3 deletions

View File

@ -610,7 +610,7 @@ static int pcu_rx_rts_req(struct gprs_rlcmac_bts *bts, struct gsm_pcu_if_rts_req
return rc;
}
/* C -> C++ adapter for direct DSP access code (e.g. osmo-bts-sysmo) */
/* C -> C++ adapter for direct PHY access code (e.g. osmo-bts-sysmo) */
extern "C" int pcu_rx_rach_ind_ptcch(struct gprs_rlcmac_bts *bts, uint8_t trx_nr, uint8_t ts_nr, uint32_t fn, int16_t qta)
{
struct rach_ind_params rip = {
@ -869,11 +869,11 @@ bssgp_failed:
the_pcu->gsmtap);
if (!bts->trx[trx_nr].fl1h) {
LOGP(DL1IF, LOGL_FATAL, "Failed to open direct "
"DSP access for PDCH.\n");
"PHY access for PDCH.\n");
exit(0);
}
#else
LOGP(DL1IF, LOGL_FATAL, "Compiled without direct DSP "
LOGP(DL1IF, LOGL_FATAL, "Compiled without direct PHY "
"access for PDCH, but enabled at "
"BTS. Please deactivate it!\n");
exit(0);