summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHarald Welte2011-06-22 23:08:55 +0200
committerHarald Welte2011-06-22 23:08:55 +0200
commit5d65fcba6caf949c910dd86e43e7d1bef3b219d2 (patch)
treecf2195431803a98b9a94a33429e0b8b2687c9a7b /src
parentremove l1ctl data structure form l2_ph_chan_conf() (diff)
downloadosmocom-5d65fcba6caf949c910dd86e43e7d1bef3b219d2.tar.gz
osmocom-5d65fcba6caf949c910dd86e43e7d1bef3b219d2.tar.xz
osmocom-5d65fcba6caf949c910dd86e43e7d1bef3b219d2.zip
add l1ctl_proto.h #includes to lots of files
this is apparently a result of no longer including it indirectly via lapdm.h
Diffstat (limited to 'src')
-rw-r--r--src/host/layer23/src/misc/app_bcch_scan.c2
-rw-r--r--src/host/layer23/src/misc/app_cbch_sniff.c2
-rw-r--r--src/host/layer23/src/misc/app_ccch_scan.c2
-rw-r--r--src/host/layer23/src/misc/app_cell_log.c2
-rw-r--r--src/host/layer23/src/mobile/app_mobile.c2
-rw-r--r--src/host/layer23/src/mobile/gsm322.c2
-rw-r--r--src/host/layer23/src/mobile/gsm48_rr.c2
7 files changed, 14 insertions, 0 deletions
diff --git a/src/host/layer23/src/misc/app_bcch_scan.c b/src/host/layer23/src/misc/app_bcch_scan.c
index 3ad426d..4c31f1a 100644
--- a/src/host/layer23/src/misc/app_bcch_scan.c
+++ b/src/host/layer23/src/misc/app_bcch_scan.c
@@ -33,6 +33,8 @@
#include <osmocom/core/select.h>
#include <osmocom/core/signal.h>
+#include <l1ctl_proto.h>
+
static int signal_cb(unsigned int subsys, unsigned int signal,
void *handler_data, void *signal_data)
{
diff --git a/src/host/layer23/src/misc/app_cbch_sniff.c b/src/host/layer23/src/misc/app_cbch_sniff.c
index ec11234..83c5468 100644
--- a/src/host/layer23/src/misc/app_cbch_sniff.c
+++ b/src/host/layer23/src/misc/app_cbch_sniff.c
@@ -35,6 +35,8 @@
#include <osmocom/core/signal.h>
#include <osmocom/gsm/rsl.h>
+#include <l1ctl_proto.h>
+
struct osmocom_ms *g_ms;
struct gsm48_sysinfo g_sysinfo = {};
diff --git a/src/host/layer23/src/misc/app_ccch_scan.c b/src/host/layer23/src/misc/app_ccch_scan.c
index 02b5e47..2f60505 100644
--- a/src/host/layer23/src/misc/app_ccch_scan.c
+++ b/src/host/layer23/src/misc/app_ccch_scan.c
@@ -40,6 +40,8 @@
#include <osmocom/bb/common/l1ctl.h>
#include <osmocom/bb/common/l23_app.h>
+#include <l1ctl_proto.h>
+
static struct {
int has_si1;
int ccch_mode;
diff --git a/src/host/layer23/src/misc/app_cell_log.c b/src/host/layer23/src/misc/app_cell_log.c
index 22ed021..27290be 100644
--- a/src/host/layer23/src/misc/app_cell_log.c
+++ b/src/host/layer23/src/misc/app_cell_log.c
@@ -35,6 +35,8 @@
#include <osmocom/core/talloc.h>
#include <osmocom/core/utils.h>
+#include <l1ctl_proto.h>
+
extern struct log_target *stderr_target;
extern void *l23_ctx;
diff --git a/src/host/layer23/src/mobile/app_mobile.c b/src/host/layer23/src/mobile/app_mobile.c
index ed672c9..1766d7e 100644
--- a/src/host/layer23/src/mobile/app_mobile.c
+++ b/src/host/layer23/src/mobile/app_mobile.c
@@ -42,6 +42,8 @@
#include <osmocom/core/select.h>
#include <osmocom/core/signal.h>
+#include <l1ctl_proto.h>
+
extern void *l23_ctx;
extern struct llist_head ms_list;
extern int vty_reading;
diff --git a/src/host/layer23/src/mobile/gsm322.c b/src/host/layer23/src/mobile/gsm322.c
index bcf3c78..210215e 100644
--- a/src/host/layer23/src/mobile/gsm322.c
+++ b/src/host/layer23/src/mobile/gsm322.c
@@ -39,6 +39,8 @@
#include <osmocom/bb/mobile/vty.h>
#include <osmocom/bb/mobile/app_mobile.h>
+#include <l1ctl_proto.h>
+
const char *ba_version = "osmocom BA V1\n";
extern void *l23_ctx;
diff --git a/src/host/layer23/src/mobile/gsm48_rr.c b/src/host/layer23/src/mobile/gsm48_rr.c
index a6f8a02..502a750 100644
--- a/src/host/layer23/src/mobile/gsm48_rr.c
+++ b/src/host/layer23/src/mobile/gsm48_rr.c
@@ -80,6 +80,8 @@
#include <osmocom/bb/common/l1ctl.h>
#include <osmocom/bb/mobile/vty.h>
+#include <l1ctl_proto.h>
+
static void start_rr_t_meas(struct gsm48_rrlayer *rr, int sec, int micro);
static void stop_rr_t_starting(struct gsm48_rrlayer *rr);
static void stop_rr_t3124(struct gsm48_rrlayer *rr);