]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/staging/rtl8192e/Kconfig
staging: add missing SPDX lines to Kconfig files
[linux.git] / drivers / staging / rtl8192e / Kconfig
1 # SPDX-License-Identifier: GPL-2.0
2 config RTLLIB
3         tristate "Support for rtllib wireless devices"
4         depends on WLAN && m
5         default n
6         select LIB80211
7         help
8           If you have a wireless card that uses rtllib, say
9           Y. Currently the only card is the rtl8192e.
10
11           If unsure, say N.
12
13 if RTLLIB
14
15 config RTLLIB_CRYPTO_CCMP
16         tristate "Support for rtllib CCMP crypto"
17         depends on RTLLIB
18         select CRYPTO_AES
19         default y
20         help
21           CCMP crypto driver for rtllib.
22
23           If you enabled RTLLIB, you want this.
24
25 config RTLLIB_CRYPTO_TKIP
26         tristate "Support for rtllib TKIP crypto"
27         depends on RTLLIB
28         select CRYPTO_ARC4
29         select CRYPTO_MICHAEL_MIC
30         default y
31         help
32           TKIP crypto driver for rtllib.
33
34           If you enabled RTLLIB, you want this.
35
36 config RTLLIB_CRYPTO_WEP
37         tristate "Support for rtllib WEP crypto"
38         select CRYPTO_ARC4
39         depends on RTLLIB
40         default y
41         help
42           TKIP crypto driver for rtllib.
43
44           If you enabled RTLLIB, you want this.
45
46 source "drivers/staging/rtl8192e/rtl8192e/Kconfig"
47
48 endif