aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2022-03-30 23:00:37 +0300
committerlaforge <laforge@osmocom.org>2022-03-31 17:37:31 +0000
commit79d2af9b31a80c6935dca1aa3da000385aabb5d1 (patch)
tree9e2c1935f151c09c4a5309bb9e4eef5053c4f547
parenta0c4a063717622a70c709573494977c27cdfc1a2 (diff)
cbch_scheduler: cosmetic: s/bts_cbch_timer/bts_cbch_timer_cb/
-rw-r--r--src/osmo-bsc/cbch_scheduler.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmo-bsc/cbch_scheduler.c b/src/osmo-bsc/cbch_scheduler.c
index 1bdf5e7dd..c66f7431b 100644
--- a/src/osmo-bsc/cbch_scheduler.c
+++ b/src/osmo-bsc/cbch_scheduler.c
@@ -246,7 +246,7 @@ static void bts_cbch_send_one(struct bts_smscb_chan_state *cstate)
bts_smscb_page_done(cstate, page);
}
-static void bts_cbch_timer(void *data)
+static void bts_cbch_timer_cb(void *data)
{
struct gsm_bts *bts = (struct gsm_bts *)data;
@@ -259,7 +259,7 @@ static void bts_cbch_timer(void *data)
/* There is one SMSCB message (page) per eight 51-multiframes, i.e. 1.882 seconds */
void bts_cbch_timer_schedule(struct gsm_bts *bts)
{
- osmo_timer_setup(&bts->cbch_timer, &bts_cbch_timer, bts);
+ osmo_timer_setup(&bts->cbch_timer, &bts_cbch_timer_cb, bts);
osmo_timer_schedule(&bts->cbch_timer, 1, 882920);
}