aboutsummaryrefslogtreecommitdiffstats
path: root/src/gsm_04_11.c
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2009-01-04 20:16:25 +0000
committerHolger Freyther <zecke@selfish.org>2009-01-04 20:16:25 +0000
commita553d098e74029b553b87d8eb51619291f175b49 (patch)
tree478d4c26171bbdbac23ea67239594f4c50adf7f5 /src/gsm_04_11.c
parent5e76ce61ace28a99f402c3d73fd74d855c6ec40d (diff)
Export the gsm0411 alloc and send function
Diffstat (limited to 'src/gsm_04_11.c')
-rw-r--r--src/gsm_04_11.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gsm_04_11.c b/src/gsm_04_11.c
index b7e06ffd7..ede89ef68 100644
--- a/src/gsm_04_11.c
+++ b/src/gsm_04_11.c
@@ -40,12 +40,12 @@
#define GSM411_ALLOC_SIZE 1024
#define GSM411_ALLOC_HEADROOM 128
-static struct msgb *gsm411_msgb_alloc(void)
+struct msgb *gsm411_msgb_alloc(void)
{
return msgb_alloc_headroom(GSM411_ALLOC_SIZE, GSM411_ALLOC_HEADROOM);
}
-static int gsm0411_sendmsg(struct msgb *msg)
+int gsm0411_sendmsg(struct msgb *msg)
{
if (msg->lchan)
msg->trx = msg->lchan->ts->trx;