1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * Data receiving implementation.
4 *
5 * Copyright (c) 2017-2020, Silicon Laboratories, Inc.
6 * Copyright (c) 2010, ST-Ericsson
7 */
8#ifndef WFX_DATA_RX_H
9#define WFX_DATA_RX_H
10
11struct wfx_vif;
12struct sk_buff;
13struct wfx_hif_ind_rx;
14
15void wfx_rx_cb(struct wfx_vif *wvif, const struct wfx_hif_ind_rx *arg, struct sk_buff *skb);
16
17#endif
18