aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-09-30 09:22:14 +0800
committerHarald Welte <laforge@gnumonks.org>2017-10-01 11:11:12 +0800
commit725bcb71f07e572672bdeb878bb1fbd94bb44eba (patch)
tree425b7193dd8e87d7df7b626663d8c010e6d0ca1b
parentf79eeca1095fb9493bf74c1fface8e70d61250e7 (diff)
libbsc: document arguments of generate_bcch_chan_list()
-rw-r--r--openbsc/src/libbsc/system_information.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/openbsc/src/libbsc/system_information.c b/openbsc/src/libbsc/system_information.c
index 2bc87693e..c7fc4bf59 100644
--- a/openbsc/src/libbsc/system_information.c
+++ b/openbsc/src/libbsc/system_information.c
@@ -574,7 +574,13 @@ static int bitvec2freq_list(uint8_t *chan_list, struct bitvec *bv,
return bitvec2freq_list(chan_list, bv, bts, false, false);
}
-/* generate a cell channel list as per Section 10.5.2.1b of 04.08 */
+/*! generate a cell channel list as per Section 10.5.2.22 of 04.08
+ * \param[out] chan_list caller-provided output buffer
+ * \param[in] bts BTS descriptor used for input data
+ * \param[in] si5 Are we generating SI5xxx (true) or SI2xxx (false)
+ * \param[in] bis Are we generating SIXbis (true) or not (false)
+ * \param[in] ter Are we generating SIXter (true) or not (false)
+ */
static int generate_bcch_chan_list(uint8_t *chan_list, struct gsm_bts *bts,
bool si5, bool bis, bool ter)
{