linux-stable/drivers/staging/wfx/hif_rx.h
Jérôme Pouiller a99f20b667 staging: wfx: remove references to WFxxx in comments
The WF200 is the only representative of the WFxxx series and the
development of any successor is not expected. So, for clarity, replace
occurrences of "WFxxx" with "WF200".

Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Link: https://lore.kernel.org/r/20210913130203.1903622-25-Jerome.Pouiller@silabs.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2021-09-14 09:16:33 +02:00

17 lines
407 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Handling of the chip-to-host events (aka indications) of the hardware API.
*
* Copyright (c) 2017-2019, Silicon Laboratories, Inc.
* Copyright (c) 2010, ST-Ericsson
* Copyright (C) 2010, ST-Ericsson SA
*/
#ifndef WFX_HIF_RX_H
#define WFX_HIF_RX_H
struct wfx_dev;
struct sk_buff;
void wfx_handle_rx(struct wfx_dev *wdev, struct sk_buff *skb);
#endif