1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Datapath 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 
11 struct wfx_vif;
12 struct sk_buff;
13 struct hif_ind_rx;
14 
15 void wfx_rx_cb(struct wfx_vif *wvif,
16 	       const struct hif_ind_rx *arg, struct sk_buff *skb);
17 
18 #endif /* WFX_DATA_RX_H */
19