summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include/osmocom/bb/modem
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2023-03-03 19:23:41 +0700
committerfixeria <vyanitskiy@sysmocom.de>2023-03-14 15:06:26 +0000
commit8240ef74fc386fd95ca0b669e99ee7d0041d2b83 (patch)
treedd1558e25118cfcf2fd2c37e86446d89deef5c43 /src/host/layer23/include/osmocom/bb/modem
parentb8c3bef7376fab28d2f71406e4b4e9c3fcddfcf0 (diff)
modem: move GRR specific code into its own file
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/grr.h6
2 files changed, 7 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 4acb21b0..b2e30590 100644
--- a/src/host/layer23/include/osmocom/bb/modem/Makefile.am
+++ b/src/host/layer23/include/osmocom/bb/modem/Makefile.am
@@ -1,5 +1,6 @@
noinst_HEADERS = \
modem.h \
+ grr.h \
llc.h \
rlcmac.h \
sndcp.h \
diff --git a/src/host/layer23/include/osmocom/bb/modem/grr.h b/src/host/layer23/include/osmocom/bb/modem/grr.h
new file mode 100644
index 00000000..208dbb1f
--- /dev/null
+++ b/src/host/layer23/include/osmocom/bb/modem/grr.h
@@ -0,0 +1,6 @@
+#pragma once
+
+struct msgb;
+struct lapdm_entity;
+
+int modem_grr_rslms_cb(struct msgb *msg, struct lapdm_entity *le, void *ctx);