From 0350824203b4083977c6a19bc377a254a2bc25bb Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Tue, 4 Apr 2023 12:49:31 +0200 Subject: [PATCH] bts-trx: Drop unused param to internal function Change-Id: Id7ad7629ec13bcec618055c41083cdac0a3102be --- src/osmo-bts-trx/l1_if.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osmo-bts-trx/l1_if.c b/src/osmo-bts-trx/l1_if.c index 2ed186818..5f800ae2c 100644 --- a/src/osmo-bts-trx/l1_if.c +++ b/src/osmo-bts-trx/l1_if.c @@ -206,7 +206,7 @@ int bts_model_adjst_ms_pwr(struct gsm_lchan *lchan) } /* set bts attributes */ -static uint8_t trx_set_bts(struct gsm_bts *bts, struct tlv_parsed *new_attr) +static uint8_t trx_set_bts(struct gsm_bts *bts) { struct phy_instance *pinst = trx_phy_instance(bts->c0); struct trx_l1h *l1h = pinst->u.osmotrx.hdl; @@ -569,7 +569,7 @@ int bts_model_apply_oml(struct gsm_bts *bts, struct msgb *msg, switch (foh->msg_type) { case NM_MT_SET_BTS_ATTR: - ev_data.cause = trx_set_bts(obj, new_attr); + ev_data.cause = trx_set_bts(obj); break; case NM_MT_SET_RADIO_ATTR: ev_data.cause = trx_set_trx(obj);