lc15/oc2g: fix function signature of l1if_open_pdch()

The function signatures l1if_open_pdch() in the code for lc15 and oc2g
differ from what is defined in pcu_l1_if_phy.h. Lets update the
signatures so that they match the prototype.

Related: OS#5198
Change-Id: If1693b1b74c1808596d7da639b860f7b226385c0
This commit is contained in:
Philipp Maier 2023-02-15 15:35:33 +01:00
parent eaf5da306c
commit 80828f0514
2 changed files with 2 additions and 2 deletions

View File

@ -361,7 +361,7 @@ int l1if_pdch_req(void *obj, uint8_t ts, int is_ptcch, uint32_t fn,
return 0;
}
void *l1if_open_pdch(uint8_t trx_no, uint32_t hlayer1)
void *l1if_open_pdch(uint8_t trx_no, uint32_t hlayer1, struct gsmtap_inst *gsmtap)
{
struct lc15l1_hdl *fl1h;
int rc;

View File

@ -366,7 +366,7 @@ int l1if_pdch_req(void *obj, uint8_t ts, int is_ptcch, uint32_t fn,
return 0;
}
void *l1if_open_pdch(uint8_t trx_no, uint32_t hlayer1)
void *l1if_open_pdch(uint8_t trx_no, uint32_t hlayer1, struct gsmtap_inst *gsmtap)
{
struct oc2gl1_hdl *fl1h;
int rc;