summaryrefslogtreecommitdiffstats
path: root/src/host/trxcon/l1ctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/host/trxcon/l1ctl.c')
-rw-r--r--src/host/trxcon/l1ctl.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/host/trxcon/l1ctl.c b/src/host/trxcon/l1ctl.c
index 12745e97..7d96396f 100644
--- a/src/host/trxcon/l1ctl.c
+++ b/src/host/trxcon/l1ctl.c
@@ -221,6 +221,19 @@ int l1ctl_tx_rach_conf(struct l1ctl_link *l1l, uint32_t fn)
return l1ctl_link_send(l1l, msg);
}
+int l1ctl_tx_data_conf(struct l1ctl_link *l1l)
+{
+ struct msgb *msg;
+
+ msg = l1ctl_alloc_msg(L1CTL_DATA_CONF);
+ if (msg == NULL)
+ return -ENOMEM;
+
+ LOGP(DL1C, LOGL_DEBUG, "Send Data Conf\n");
+
+ return l1ctl_link_send(l1l, msg);
+}
+
/* FBSB expire timer */
static void fbsb_timer_cb(void *data)
{