From 6d4ccc16389ea7952277d260b983d9e1cabf6e71 Mon Sep 17 00:00:00 2001 From: Alexander Chemeris Date: Thu, 7 May 2020 15:32:52 +0300 Subject: [PATCH] chan_alloc: Add comments for the *_chan_load() functions. Change-Id: Ie199104fd4a6c0d5218f56b958d12fac4612fd78 --- src/osmo-bsc/chan_alloc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/osmo-bsc/chan_alloc.c b/src/osmo-bsc/chan_alloc.c index b2fbac881..75cea7162 100644 --- a/src/osmo-bsc/chan_alloc.c +++ b/src/osmo-bsc/chan_alloc.c @@ -37,6 +37,7 @@ #include +/* Update channel load calculation for the given BTS */ void bts_chan_load(struct pchan_load *cl, const struct gsm_bts *bts) { struct gsm_bts_trx *trx; @@ -99,6 +100,7 @@ void bts_chan_load(struct pchan_load *cl, const struct gsm_bts *bts) } } +/* Update channel load calculation for all BTS in the BSC */ void network_chan_load(struct pchan_load *pl, struct gsm_network *net) { struct gsm_bts *bts;