summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include/osmocom/bb/modem
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2023-03-30 12:37:55 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2023-03-30 13:52:50 +0200
commita89939a68b132aa6a74b2f6fbb249b45d6723a1f (patch)
treefe297d6129a3b9922df646aaf1af145bc5b79cd0 /src/host/layer23/include/osmocom/bb/modem
parent79ea13fccc3ba7edf9156c9dc6393c28a6679637 (diff)
modem: initial SM layer support through libosmo-gprs-sm
Diffstat (limited to 'src/host/layer23/include/osmocom/bb/modem')
-rw-r--r--src/host/layer23/include/osmocom/bb/modem/Makefile.am1
-rw-r--r--src/host/layer23/include/osmocom/bb/modem/sm.h7
2 files changed, 8 insertions, 0 deletions
diff --git a/src/host/layer23/include/osmocom/bb/modem/Makefile.am b/src/host/layer23/include/osmocom/bb/modem/Makefile.am
index 6dfc98e6..2f69d195 100644
--- a/src/host/layer23/include/osmocom/bb/modem/Makefile.am
+++ b/src/host/layer23/include/osmocom/bb/modem/Makefile.am
@@ -4,6 +4,7 @@ noinst_HEADERS = \
grr.h \
llc.h \
rlcmac.h \
+ sm.h \
sndcp.h \
vty.h \
$(NULL)
diff --git a/src/host/layer23/include/osmocom/bb/modem/sm.h b/src/host/layer23/include/osmocom/bb/modem/sm.h
new file mode 100644
index 00000000..51000cfd
--- /dev/null
+++ b/src/host/layer23/include/osmocom/bb/modem/sm.h
@@ -0,0 +1,7 @@
+#pragma once
+
+#include <stdbool.h>
+
+struct osmocom_ms;
+
+int modem_sm_init(struct osmocom_ms *ms);