3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-15 11:45:54 +00:00
Raziel K. Crowe 9c4c3c24a5 redo
2022-09-09 14:10:02 +05:00

18 lines
407 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Handling of the chip-to-host events (aka indications) of the hardware API.
*
* Copyright (c) 2017-2019, Silicon Laboratories, Inc.
* Copyright (c) 2010, ST-Ericsson
* Copyright (C) 2010, ST-Ericsson SA
*/
#ifndef WFX_HIF_RX_H
#define WFX_HIF_RX_H
struct wfx_dev;
struct sk_buff;
void wfx_handle_rx(struct wfx_dev *wdev, struct sk_buff *skb);
#endif