ipw.h 410 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Intel Pro/Wireless 2100, 2200BG, 2915ABG network connection driver
  4. *
  5. * Copyright 2012 Stanislav Yakovlev <[email protected]>
  6. */
  7. #ifndef __IPW_H__
  8. #define __IPW_H__
  9. #include <linux/ieee80211.h>
  10. static const u32 ipw_cipher_suites[] = {
  11. WLAN_CIPHER_SUITE_WEP40,
  12. WLAN_CIPHER_SUITE_WEP104,
  13. WLAN_CIPHER_SUITE_TKIP,
  14. WLAN_CIPHER_SUITE_CCMP,
  15. };
  16. #endif