data_rx.h 394 B

123456789101112131415161718
  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. struct wfx_vif;
  11. struct sk_buff;
  12. struct hif_ind_rx;
  13. void wfx_rx_cb(struct wfx_vif *wvif,
  14. const struct hif_ind_rx *arg, struct sk_buff *skb);
  15. #endif /* WFX_DATA_RX_H */