/* * Copyright (c) 2024 Nordic Semiconductor ASA * * SPDX-License-Identifier: BSD-3-Clause */ /** * @brief Header containing common declarations for the * HAL Layer of the Wi-Fi driver. */ #ifndef __HAL_COMMON_H__ #define __HAL_COMMON_H__ enum nrf_wifi_status hal_rpu_hpq_enqueue(struct nrf_wifi_hal_dev_ctx *hal_ctx, struct host_rpu_hpq *hpq, unsigned int val); enum nrf_wifi_status hal_rpu_hpq_dequeue(struct nrf_wifi_hal_dev_ctx *hal_ctx, struct host_rpu_hpq *hpq, unsigned int *val); #endif /* __HAL_COMMON_H__ */