From 5d0121f208c275d1cbff3f2f3af1325daee1d406 Mon Sep 17 00:00:00 2001 From: Kapil Bhatt Date: Wed, 13 Mar 2024 19:04:02 +0530 Subject: [PATCH] main: Store TX power ceiling parameters for radio test we don't send the TX power ceiling parameters to RPU, we still need to store it for internal usage. Signed-off-by: Kapil Bhatt --- src/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index c21f61e..ba4fc12 100644 --- a/src/main.c +++ b/src/main.c @@ -522,7 +522,8 @@ nrf_wifi_fmac_dev_init_lnx(struct nrf_wifi_ctx_lnx *rpu_ctx_lnx) #endif /* CONFIG_NRF_WIFI_LOW_POWER */ NRF_WIFI_DEF_PHY_CALIB, op_band, CONFIG_NRF_WIFI_BEAMFORMING, - &tx_pwr_ctrl_params); + &tx_pwr_ctrl_params, + &tx_pwr_ceil_params); #endif /* !CONFIG_NRF700X_RADIO_TEST */ if (status != NRF_WIFI_STATUS_SUCCESS) { pr_err("%s: nrf_wifi_fmac_dev_init failed\n", __func__);