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
380 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Data receiving implementation.
*
* Copyright (c) 2017-2020, Silicon Laboratories, Inc.
* Copyright (c) 2010, ST-Ericsson
*/
#ifndef WFX_DATA_RX_H
#define WFX_DATA_RX_H
struct wfx_vif;
struct sk_buff;
struct wfx_hif_ind_rx;
void wfx_rx_cb(struct wfx_vif *wvif, const struct wfx_hif_ind_rx *arg, struct sk_buff *skb);
#endif