osmo-bts-trx: bts_report_interf_meas(): remove unused fn param

Change-Id: Iec25b28e418ce1f66bbc7e0696a3ceebb02e9c82
This commit is contained in:
Vadim Yanitskiy 2022-04-11 06:07:00 +03:00 committed by fixeria
parent bab872cc0d
commit c02876eae2
1 changed files with 2 additions and 3 deletions

View File

@ -118,8 +118,7 @@ static void lchan_report_interf_meas(const struct gsm_lchan *lchan)
gsm_lchan_interf_meas_push((struct gsm_lchan *) lchan, interf_avg);
}
static void bts_report_interf_meas(const struct gsm_bts *bts,
const uint32_t fn)
static void bts_report_interf_meas(const struct gsm_bts *bts)
{
const struct gsm_bts_trx *trx;
unsigned int tn, ln;
@ -270,7 +269,7 @@ static void bts_sched_fn(struct gsm_bts *bts, const uint32_t fn)
/* Report interference measurements */
if (fn % 104 == 0) /* SACCH period */
bts_report_interf_meas(bts, fn);
bts_report_interf_meas(bts);
/* send time indication */
l1if_mph_time_ind(bts, fn);