cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

hif_rx.h (407B)


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