1 /*
2  * Copyright (c) 2024 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 /**
8  * @brief Header containing common declarations for the
9  * HAL Layer of the Wi-Fi driver.
10  */
11 
12 #ifndef __HAL_COMMON_H__
13 #define __HAL_COMMON_H__
14 
15 enum nrf_wifi_status hal_rpu_hpq_enqueue(struct nrf_wifi_hal_dev_ctx *hal_ctx,
16 					 struct host_rpu_hpq *hpq,
17 					 unsigned int val);
18 
19 enum nrf_wifi_status hal_rpu_hpq_dequeue(struct nrf_wifi_hal_dev_ctx *hal_ctx,
20 					 struct host_rpu_hpq *hpq,
21 					 unsigned int *val);
22 #endif /* __HAL_COMMON_H__ */
23