summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-06-22 23:08:55 +0200
committerHarald Welte <laforge@gnumonks.org>2011-06-22 23:08:55 +0200
commit5d65fcba6caf949c910dd86e43e7d1bef3b219d2 (patch)
treecf2195431803a98b9a94a33429e0b8b2687c9a7b
parentf36e4fe86c68e52e9714c0b9e9ec9a86b4a76bde (diff)
add l1ctl_proto.h #includes to lots of files
this is apparently a result of no longer including it indirectly via lapdm.h
-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 3ad426d4..4c31f1a4 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 ec112343..83c54686 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 02b5e47a..2f605059 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 22ed021a..27290be7 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 ed672c9c..1766d7e5 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 bcf3c781..210215e0 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 a6f8a028..502a7503 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);