aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Eversberg <Andreas.Eversberg@versatel.de>2009-06-29 15:19:38 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2009-06-29 15:19:38 +0200
commit8226fa7016b4b3a26021b8ebf5c1fbeb5f280274 (patch)
tree8d4113bd49ef05a422aee5e7700c6d534587411a
parenteab33356d0685fa93cc29a30c0bcd5ffbf1a543d (diff)
the pointer "tall_bsc_ctx" belongs to the gsm_data.c file not to include file.
-rw-r--r--openbsc/include/openbsc/gsm_data.h2
-rw-r--r--openbsc/src/bsc_hack.c2
-rw-r--r--openbsc/src/gsm_data.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/openbsc/include/openbsc/gsm_data.h b/openbsc/include/openbsc/gsm_data.h
index 9b4cf9df3..af2e22c5a 100644
--- a/openbsc/include/openbsc/gsm_data.h
+++ b/openbsc/include/openbsc/gsm_data.h
@@ -415,7 +415,7 @@ struct gsm_bts *gsm_bts_by_lac(struct gsm_network *net, unsigned int lac,
char *gsm_band_name(enum gsm_band band);
enum gsm_band gsm_band_parse(int mhz);
-void *tall_bsc_ctx;
+extern void *tall_bsc_ctx;
static inline int is_ipaccess_bts(struct gsm_bts *bts)
{
diff --git a/openbsc/src/bsc_hack.c b/openbsc/src/bsc_hack.c
index e3e3a407f..13438b9cb 100644
--- a/openbsc/src/bsc_hack.c
+++ b/openbsc/src/bsc_hack.c
@@ -49,8 +49,6 @@
#include <openbsc/signal.h>
#include <openbsc/talloc.h>
-void *tall_bsc_ctx;
-
/* global pointer to the gsm network data structure */
static struct gsm_network *gsmnet;
diff --git a/openbsc/src/gsm_data.c b/openbsc/src/gsm_data.c
index 81facdf04..c21c6b4f5 100644
--- a/openbsc/src/gsm_data.c
+++ b/openbsc/src/gsm_data.c
@@ -27,6 +27,8 @@
#include <openbsc/gsm_data.h>
#include <openbsc/talloc.h>
+void *tall_bsc_ctx;
+
void set_ts_e1link(struct gsm_bts_trx_ts *ts, u_int8_t e1_nr,
u_int8_t e1_ts, u_int8_t e1_ts_ss)
{