aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/gsm_data.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-12-22 23:43:29 +0100
committerHarald Welte <laforge@gnumonks.org>2011-01-01 17:23:41 +0100
commit54209c2dce4bea775a82ea53df98a3d2a42e97df (patch)
tree28b3c4e9ae999b0eadcd9190ddad4c075e5911e1 /openbsc/include/openbsc/gsm_data.h
parent9af6ddfcec25f43c5b50a6c5a6b80e341ab9a8a7 (diff)
MNCC: rename mncc_upq_enqueue() to cc_tx_to_mncc()
The new function name clearly indicates: The Call Control (TS 04.08, msc-side in OpenBSC) wants to transmit something to the MNCC interface.
Diffstat (limited to 'openbsc/include/openbsc/gsm_data.h')
-rw-r--r--openbsc/include/openbsc/gsm_data.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/include/openbsc/gsm_data.h b/openbsc/include/openbsc/gsm_data.h
index 4c87f8354..66ef46c50 100644
--- a/openbsc/include/openbsc/gsm_data.h
+++ b/openbsc/include/openbsc/gsm_data.h
@@ -849,7 +849,7 @@ struct gsm_subscriber_connection *subscr_con_allocate(struct gsm_lchan *lchan);
void subscr_con_free(struct gsm_subscriber_connection *conn);
/* FIXME: this should go some other header file, but there is no good one */
-static inline void mncc_upq_enqueue(struct gsm_network *net, struct msgb *msg)
+static inline void cc_tx_to_mncc(struct gsm_network *net, struct msgb *msg)
{
msgb_enqueue(&net->upqueue, msg);
}