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

cfg.h (650B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef __LBS_CFG80211_H__
      3#define __LBS_CFG80211_H__
      4
      5struct device;
      6struct lbs_private;
      7struct regulatory_request;
      8struct wiphy;
      9
     10struct wireless_dev *lbs_cfg_alloc(struct device *dev);
     11int lbs_cfg_register(struct lbs_private *priv);
     12void lbs_cfg_free(struct lbs_private *priv);
     13
     14void lbs_send_disconnect_notification(struct lbs_private *priv,
     15				      bool locally_generated);
     16void lbs_send_mic_failureevent(struct lbs_private *priv, u32 event);
     17
     18void lbs_scan_done(struct lbs_private *priv);
     19void lbs_scan_deinit(struct lbs_private *priv);
     20int lbs_disconnect(struct lbs_private *priv, u16 reason);
     21
     22#endif