aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmo-bts/paging.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-03-17 12:22:40 +0100
committerHarald Welte <laforge@gnumonks.org>2018-03-17 13:40:03 +0100
commitd8cd756da48bcff9f9caf9e64fc0af047a165b60 (patch)
tree136d09901ae8420803500d92646944376ae21f59 /include/osmo-bts/paging.h
parent7c4a22dbc48f51eb199766bf1b29e061bf765cbd (diff)
Get rid of 'struct gsm_bts_role_bts'
gsm_bts_role_bts was introduced at a time when we still shared gsm_data_shared.[ch] between BSC and BTS, and where we then subsequently needed a BTS-private structure. Since that sharing was abandoned quite some time ago, we can merge gsm_bts_role_bts into gsm_bts and do away with the bts/btsb dualism in a lot of the code. Change-Id: I4fdd601ea873d9697f89a748cc77bcf7c978fa3e
Diffstat (limited to 'include/osmo-bts/paging.h')
-rw-r--r--include/osmo-bts/paging.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/osmo-bts/paging.h b/include/osmo-bts/paging.h
index 38accd72..7fc0bf05 100644
--- a/include/osmo-bts/paging.h
+++ b/include/osmo-bts/paging.h
@@ -6,10 +6,10 @@
#include <osmocom/gsm/protocol/gsm_04_08.h>
struct paging_state;
-struct gsm_bts_role_bts;
+struct gsm_bts;
/* initialize paging code */
-struct paging_state *paging_init(struct gsm_bts_role_bts *btsb,
+struct paging_state *paging_init(struct gsm_bts *bts,
unsigned int num_paging_max,
unsigned int paging_lifetime);