xref: /openbmc/linux/drivers/staging/rtl8192e/Kconfig (revision f8933839)
1# SPDX-License-Identifier: GPL-2.0
2config 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
12if RTLLIB
13
14config 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
26config RTLLIB_CRYPTO_TKIP
27	tristate "Support for rtllib TKIP crypto"
28	depends on RTLLIB
29	select CRYPTO
30	select CRYPTO_LIB_ARC4
31	select CRYPTO_MICHAEL_MIC
32	default y
33	help
34	  TKIP crypto driver for rtllib.
35
36	  If you enabled RTLLIB, you want this.
37
38config RTLLIB_CRYPTO_WEP
39	tristate "Support for rtllib WEP crypto"
40	select CRYPTO_LIB_ARC4
41	depends on RTLLIB
42	default y
43	help
44	  TKIP crypto driver for rtllib.
45
46	  If you enabled RTLLIB, you want this.
47
48source "drivers/staging/rtl8192e/rtl8192e/Kconfig"
49
50endif
51