linux-stable/drivers/staging/wfx/hif_rx.h
Jérôme Pouiller 185c106f79 staging: wfx: add support for start-up indication
Once firmware is loaded, it send a first indication to host. This
indication signalize that host can start to communicate with firmware.
In add, it contains information about chip and firmware (MAC addresses,
firmware version, etc...).

Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Link: https://lore.kernel.org/r/20190919142527.31797-10-Jerome.Pouiller@silabs.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2019-10-04 10:46:09 +02:00

18 lines
420 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Implementation of chip-to-host event (aka indications) of WFxxx Split Mac
* (WSM) 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