aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-sysmo/l1_if.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2013-01-21 12:27:15 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2013-02-27 09:07:17 +0100
commitff4f789249e9c26f268abd2e47f39627f4bbdd9d (patch)
treeedc3b3991bf77e42556cc80e5f809c7d9178466c /src/osmo-bts-sysmo/l1_if.c
parent0890e274b1a1e82907dfa56a4f4bb067d22dca4c (diff)
sysmobts: Remove the data parameter from the l1if_gsm_req_compl
Pass in the trx argument at the lower level as everyone is using the fl1h->priv now.
Diffstat (limited to 'src/osmo-bts-sysmo/l1_if.c')
-rw-r--r--src/osmo-bts-sysmo/l1_if.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmo-bts-sysmo/l1_if.c b/src/osmo-bts-sysmo/l1_if.c
index 198ced48..3e8ee6eb 100644
--- a/src/osmo-bts-sysmo/l1_if.c
+++ b/src/osmo-bts-sysmo/l1_if.c
@@ -242,9 +242,9 @@ int l1if_req_compl(struct femtol1_hdl *fl1h, struct msgb *msg,
}
int l1if_gsm_req_compl(struct femtol1_hdl *fl1h, struct msgb *msg,
- l1if_compl_cb *cb, void *data)
+ l1if_compl_cb *cb)
{
- return l1if_req_compl(fl1h, msg, 0, cb, data);
+ return l1if_req_compl(fl1h, msg, 0, cb, fl1h->priv);
}
/* allocate a msgb containing a GsmL1_Prim_t */