• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Implementation of chip-to-host event (aka indications) of WFxxx Split Mac
4  * (WSM) API.
5  *
6  * Copyright (c) 2017-2019, Silicon Laboratories, Inc.
7  * Copyright (c) 2010, ST-Ericsson
8  * Copyright (C) 2010, ST-Ericsson SA
9  */
10 #ifndef WFX_HIF_RX_H
11 #define WFX_HIF_RX_H
12 
13 struct wfx_dev;
14 struct sk_buff;
15 
16 void wfx_handle_rx(struct wfx_dev *wdev, struct sk_buff *skb);
17 
18 #endif
19