hif_rx.h 420 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Implementation of chip-to-host event (aka indications) of WFxxx Split Mac
  4. * (WSM) API.
  5. *
  6. * Copyright (c) 2017-2019, Silicon Laboratories, Inc.
  7. * Copyright (c) 2010, ST-Ericsson
  8. * Copyright (C) 2010, ST-Ericsson SA
  9. */
  10. #ifndef WFX_HIF_RX_H
  11. #define WFX_HIF_RX_H
  12. struct wfx_dev;
  13. struct sk_buff;
  14. void wfx_handle_rx(struct wfx_dev *wdev, struct sk_buff *skb);
  15. #endif