key.h 454 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Implementation of mac80211 API.
  4. *
  5. * Copyright (c) 2017-2020, Silicon Laboratories, Inc.
  6. * Copyright (c) 2010, ST-Ericsson
  7. */
  8. #ifndef WFX_KEY_H
  9. #define WFX_KEY_H
  10. #include <net/mac80211.h>
  11. struct wfx_dev;
  12. struct wfx_vif;
  13. int wfx_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
  14. struct ieee80211_vif *vif, struct ieee80211_sta *sta,
  15. struct ieee80211_key_conf *key);
  16. #endif /* WFX_STA_H */