Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * Handling of the chip-to-host events (aka indications) of the hardware API.
0004  *
0005  * Copyright (c) 2017-2019, Silicon Laboratories, Inc.
0006  * Copyright (c) 2010, ST-Ericsson
0007  * Copyright (C) 2010, ST-Ericsson SA
0008  */
0009 #ifndef WFX_HIF_RX_H
0010 #define WFX_HIF_RX_H
0011 
0012 struct wfx_dev;
0013 struct sk_buff;
0014 
0015 void wfx_handle_rx(struct wfx_dev *wdev, struct sk_buff *skb);
0016 
0017 #endif