1818/**
1919 * @brief Initialize the BAL layer.
2020 *
21- * @param opriv Pointer to the OSAL layer context returned by the
22- * nrf_wifi_osal_init API.
2321 * @param cfg_params Pointer to the configuration parameters for the BAL layer.
2422 * @param intr_callbk_fn Pointer to the callback function which the user of this
2523 * layer needs to implement to handle interrupts from the RPU.
@@ -42,8 +40,6 @@ struct nrf_wifi_bal_priv *nrf_wifi_bal_init(struct nrf_wifi_bal_cfg_params *cfg_
4240 *
4341 * @param bpriv Pointer to the BAL layer context returned by the
4442 * @ref nrf_wifi_bal_init API.
45- *
46- * @return None.
4743 */
4844void nrf_wifi_bal_deinit (struct nrf_wifi_bal_priv * bpriv );
4945
@@ -64,8 +60,6 @@ struct nrf_wifi_bal_dev_ctx *nrf_wifi_bal_dev_add(struct nrf_wifi_bal_priv *bpri
6460 *
6561 * @param bal_dev_ctx Pointer to the device context returned by the
6662 * @ref nrf_wifi_bal_dev_add API.
67- *
68- * @return None.
6963 */
7064void nrf_wifi_bal_dev_rem (struct nrf_wifi_bal_dev_ctx * bal_dev_ctx );
7165
@@ -84,8 +78,6 @@ enum nrf_wifi_status nrf_wifi_bal_dev_init(struct nrf_wifi_bal_dev_ctx *bal_dev_
8478 *
8579 * @param bal_dev_ctx Pointer to the device context returned by the
8680 * @ref nrf_wifi_bal_dev_add API.
87- *
88- * @return None.
8981 */
9082void nrf_wifi_bal_dev_deinit (struct nrf_wifi_bal_dev_ctx * bal_dev_ctx );
9183
@@ -105,8 +97,6 @@ unsigned int nrf_wifi_bal_read_word(void *ctx, unsigned long addr_offset);
10597 * @param ctx Pointer to the context.
10698 * @param addr_offset Address offset to write to.
10799 * @param val Value to write.
108- *
109- * @return None.
110100 */
111101void nrf_wifi_bal_write_word (void * ctx ,
112102 unsigned long addr_offset ,
@@ -119,8 +109,6 @@ void nrf_wifi_bal_write_word(void *ctx,
119109 * @param dest_addr Pointer to the destination address.
120110 * @param src_addr_offset Source address offset to read from.
121111 * @param len Length of the data to read.
122- *
123- * @return None.
124112 */
125113void nrf_wifi_bal_read_block (void * ctx ,
126114 void * dest_addr ,
@@ -134,8 +122,6 @@ void nrf_wifi_bal_read_block(void *ctx,
134122 * @param dest_addr_offset Destination address offset to write to.
135123 * @param src_addr Pointer to the source address.
136124 * @param len Length of the data to write.
137- *
138- * @return None.
139125 */
140126void nrf_wifi_bal_write_block (void * ctx ,
141127 unsigned long dest_addr_offset ,
@@ -164,8 +150,6 @@ unsigned long nrf_wifi_bal_dma_map(void *ctx,
164150 * @param phy_addr Physical address to unmap.
165151 * @param len Length of the data to unmap.
166152 * @param dma_dir DMA direction.
167- *
168- * @return None.
169153 */
170154unsigned long nrf_wifi_bal_dma_unmap (void * ctx ,
171155 unsigned long phy_addr ,
@@ -176,26 +160,20 @@ unsigned long nrf_wifi_bal_dma_unmap(void *ctx,
176160 * @brief Enable bus access recording.
177161 *
178162 * @param ctx Pointer to the context.
179- *
180- * @return None.
181163 */
182164void nrf_wifi_bal_bus_access_rec_enab (void * ctx );
183165
184166/**
185167 * @brief Disable bus access recording.
186168 *
187169 * @param ctx Pointer to the context.
188- *
189- * @return None.
190170 */
191171void nrf_wifi_bal_bus_access_rec_disab (void * ctx );
192172
193173/**
194174 * @brief Print bus access count.
195175 *
196176 * @param ctx Pointer to the context.
197- *
198- * @return None.
199177 */
200178void nrf_wifi_bal_bus_access_cnt_print (void * ctx );
201179
@@ -204,17 +182,13 @@ void nrf_wifi_bal_bus_access_cnt_print(void *ctx);
204182 * @brief Put the RPU to sleep.
205183 *
206184 * @param ctx Pointer to the context.
207- *
208- * @return None.
209185 */
210186void nrf_wifi_bal_rpu_ps_sleep (void * ctx );
211187
212188/**
213189 * @brief Wake up the RPU from sleep.
214190 *
215191 * @param ctx Pointer to the context.
216- *
217- * @return None.
218192 */
219193void nrf_wifi_bal_rpu_ps_wake (void * ctx );
220194
0 commit comments