]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blob - drivers/staging/rtl8192e/Kconfig
staging: rtl8192e: fix kconfig dependency warning for RTLLIB_CRYPTO_CCMP
[mirror_ubuntu-hirsute-kernel.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 select LIB80211
6 help
7 If you have a wireless card that uses rtllib, say
8 Y. Currently the only card is the rtl8192e.
9
10 If unsure, say N.
11
12 if RTLLIB
13
14 config RTLLIB_CRYPTO_CCMP
15 tristate "Support for rtllib CCMP crypto"
16 depends on RTLLIB
17 select CRYPTO
18 select CRYPTO_AES
19 select CRYPTO_CCM
20 default y
21 help
22 CCMP crypto driver for rtllib.
23
24 If you enabled RTLLIB, you want this.
25
26 config RTLLIB_CRYPTO_TKIP
27 tristate "Support for rtllib TKIP crypto"
28 depends on RTLLIB
29 select CRYPTO_ARC4
30 select CRYPTO_MICHAEL_MIC
31 default y
32 help
33 TKIP crypto driver for rtllib.
34
35 If you enabled RTLLIB, you want this.
36
37 config RTLLIB_CRYPTO_WEP
38 tristate "Support for rtllib WEP crypto"
39 select CRYPTO_ARC4
40 depends on RTLLIB
41 default y
42 help
43 TKIP crypto driver for rtllib.
44
45 If you enabled RTLLIB, you want this.
46
47 source "drivers/staging/rtl8192e/rtl8192e/Kconfig"
48
49 endif