aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-06-15 14:16:02 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-06-15 14:16:02 +0800
commit9140174faaf0ba318186c34707870c5f2a98b466 (patch)
tree2724d3824898e1af06ac774f6cb63a52dc8ae682 /openbsc
parentd521d97976d2d42642c42af08764b42f5c2e4c4d (diff)
bsc_api: Remove the lchan argument from gsm48_tx_mm_info.
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/include/openbsc/gsm_04_08.h2
-rw-r--r--openbsc/src/gsm_04_08.c10
2 files changed, 6 insertions, 6 deletions
diff --git a/openbsc/include/openbsc/gsm_04_08.h b/openbsc/include/openbsc/gsm_04_08.h
index 4513c4d3a..1e5ffced6 100644
--- a/openbsc/include/openbsc/gsm_04_08.h
+++ b/openbsc/include/openbsc/gsm_04_08.h
@@ -30,7 +30,7 @@ int gsm0408_rcvmsg(struct msgb *msg, u_int8_t link_id);
enum gsm_chan_t get_ctype_by_chreq(struct gsm_bts *bts, u_int8_t ra, int neci);
enum gsm_chreq_reason_t get_reason_by_chreq(struct gsm_bts *bts, u_int8_t ra, int neci);
-int gsm48_tx_mm_info(struct gsm_lchan *lchan);
+int gsm48_tx_mm_info(struct gsm_subscriber_connection *conn);
int gsm48_tx_mm_auth_req(struct gsm_lchan *lchan, u_int8_t *rand, int key_seq);
int gsm48_tx_mm_auth_rej(struct gsm_lchan *lchan);
int gsm48_send_rr_release(struct gsm_lchan *lchan);
diff --git a/openbsc/src/gsm_04_08.c b/openbsc/src/gsm_04_08.c
index 14fdfc14d..e3eafe6a5 100644
--- a/openbsc/src/gsm_04_08.c
+++ b/openbsc/src/gsm_04_08.c
@@ -255,7 +255,7 @@ static int _gsm0408_authorize_sec_cb(unsigned int hooknum, unsigned int event,
rc = gsm0408_loc_upd_acc(conn, conn->subscr->tmsi);
if (lchan->ts->trx->bts->network->send_mm_info) {
/* send MM INFO with network name */
- rc = gsm48_tx_mm_info(lchan);
+ rc = gsm48_tx_mm_info(conn);
}
/* call subscr_update after putting the loc_upd_acc
@@ -568,11 +568,11 @@ static u_int8_t to_bcd8(u_int8_t val)
#endif
/* Section 9.2.15a */
-int gsm48_tx_mm_info(struct gsm_lchan *lchan)
+int gsm48_tx_mm_info(struct gsm_subscriber_connection *conn)
{
struct msgb *msg = gsm48_msgb_alloc();
struct gsm48_hdr *gh;
- struct gsm_network *net = lchan->ts->trx->bts->network;
+ struct gsm_network *net = conn->bts->network;
u_int8_t *ptr8;
int name_len, name_pad;
#if 0
@@ -581,7 +581,7 @@ int gsm48_tx_mm_info(struct gsm_lchan *lchan)
int tz15min;
#endif
- msg->lchan = lchan;
+ msg->lchan = conn->lchan;
gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
gh->proto_discr = GSM48_PDISC_MM;
@@ -667,7 +667,7 @@ int gsm48_tx_mm_info(struct gsm_lchan *lchan)
DEBUGP(DMM, "-> MM INFO\n");
- return gsm48_conn_sendmsg(msg, &lchan->conn, NULL);
+ return gsm48_conn_sendmsg(msg, conn, NULL);
}
/* Section 9.2.2 */