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

bcdc.h (686B)


      1// SPDX-License-Identifier: ISC
      2/*
      3 * Copyright (c) 2013 Broadcom Corporation
      4 */
      5#ifndef BRCMFMAC_BCDC_H
      6#define BRCMFMAC_BCDC_H
      7
      8#ifdef CONFIG_BRCMFMAC_PROTO_BCDC
      9int brcmf_proto_bcdc_attach(struct brcmf_pub *drvr);
     10void brcmf_proto_bcdc_detach(struct brcmf_pub *drvr);
     11void brcmf_proto_bcdc_txflowblock(struct device *dev, bool state);
     12void brcmf_proto_bcdc_txcomplete(struct device *dev, struct sk_buff *txp,
     13				 bool success);
     14struct brcmf_fws_info *drvr_to_fws(struct brcmf_pub *drvr);
     15#else
     16static inline int brcmf_proto_bcdc_attach(struct brcmf_pub *drvr) { return 0; }
     17static inline void brcmf_proto_bcdc_detach(struct brcmf_pub *drvr) {}
     18#endif
     19
     20#endif /* BRCMFMAC_BCDC_H */