Linux Audio

Check our new training course

Loading...
Note: File does not exist in v4.6.
 1/* SPDX-License-Identifier: GPL-2.0-only */
 2/*
 3 * Handling of the chip-to-host events (aka indications) of the hardware API.
 4 *
 5 * Copyright (c) 2017-2019, Silicon Laboratories, Inc.
 6 * Copyright (c) 2010, ST-Ericsson
 7 * Copyright (C) 2010, ST-Ericsson SA
 8 */
 9#ifndef WFX_HIF_RX_H
10#define WFX_HIF_RX_H
11
12struct wfx_dev;
13struct sk_buff;
14
15void wfx_handle_rx(struct wfx_dev *wdev, struct sk_buff *skb);
16
17#endif