RRLP: properly name the init function

We don't actually deal with DSO loading here...

Change-Id: I24d0c9ad52f07f08176ad129878b48a591a3af6c
This commit is contained in:
Vadim Yanitskiy 2018-08-04 01:13:49 +07:00 committed by Harald Welte
parent 1ea6baf1ec
commit d01b594092
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
#pragma once
void on_dso_load_rrlp(void);
void msc_rrlp_init(void);

View File

@ -96,7 +96,7 @@ static int paging_sig_cb(unsigned int subsys, unsigned int signal,
return 0;
}
void on_dso_load_rrlp(void)
void msc_rrlp_init(void)
{
osmo_signal_register_handler(SS_SUBSCR, subscr_sig_cb, NULL);
osmo_signal_register_handler(SS_PAGING, paging_sig_cb, NULL);