linux/drivers/staging/wfx/data_rx.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0-only */
   2/*
   3 * Datapath implementation.
   4 *
   5 * Copyright (c) 2017-2020, Silicon Laboratories, Inc.
   6 * Copyright (c) 2010, ST-Ericsson
   7 */
   8#ifndef WFX_DATA_RX_H
   9#define WFX_DATA_RX_H
  10
  11struct wfx_vif;
  12struct sk_buff;
  13struct hif_ind_rx;
  14
  15void wfx_rx_cb(struct wfx_vif *wvif,
  16               const struct hif_ind_rx *arg, struct sk_buff *skb);
  17
  18#endif /* WFX_DATA_RX_H */
  19