aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2018-07-24 16:12:45 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2018-07-28 12:18:23 +0200
commit68455f30a0a8dbda230091c13adce00760b7a467 (patch)
tree71be6b1103d54a91d93d5c308e4c6310867e3138 /include/osmocom
parent6242742d2022d5d27fa938409e89514cb548d0de (diff)
cosmetic: move RR functions from bsc_api.c to gsm_04_08_rr.c
Rationale: bsc_api.c used to be a kind of kitchen sink for various implementations, we want to dissolve it. Also, combining 0808 and 0408 in the same c file causes "weird" linking dependencies for utility and test programs. bsc_api.c will be completely dissolved in upcoming Ib7ce026b52d4ba3e53a8b2824e74ea92432c48c5. Change-Id: Ie8ee334145bf7bc3a601d395ea7ab9b2009b61c7
Diffstat (limited to 'include/osmocom')
-rw-r--r--include/osmocom/bsc/bsc_api.h1
-rw-r--r--include/osmocom/bsc/gsm_04_08_rr.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/include/osmocom/bsc/bsc_api.h b/include/osmocom/bsc/bsc_api.h
index a90268bde..9e2b44e2c 100644
--- a/include/osmocom/bsc/bsc_api.h
+++ b/include/osmocom/bsc/bsc_api.h
@@ -28,5 +28,4 @@ int gsm0808_page(struct gsm_bts *bts, unsigned int page_group,
unsigned int mi_len, uint8_t *mi, int chan_type);
int gsm0808_clear(struct gsm_subscriber_connection *conn);
-int gsm0408_rcvmsg(struct msgb *msg, uint8_t link_id);
#endif
diff --git a/include/osmocom/bsc/gsm_04_08_rr.h b/include/osmocom/bsc/gsm_04_08_rr.h
index 4349a37cc..69cb6eab5 100644
--- a/include/osmocom/bsc/gsm_04_08_rr.h
+++ b/include/osmocom/bsc/gsm_04_08_rr.h
@@ -41,3 +41,5 @@ static inline struct msgb *gsm48_msgb_alloc_name(const char *name)
}
uint64_t str_to_imsi(const char *imsi_str);
+
+int gsm0408_rcvmsg(struct msgb *msg, uint8_t link_id);