hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
kernel/drivers/staging/rtl8192e/Kconfig
....@@ -1,9 +1,9 @@
1
+# SPDX-License-Identifier: GPL-2.0
12 config RTLLIB
23 tristate "Support for rtllib wireless devices"
34 depends on WLAN && m
4
- default n
55 select LIB80211
6
- ---help---
6
+ help
77 If you have a wireless card that uses rtllib, say
88 Y. Currently the only card is the rtl8192e.
99
....@@ -14,9 +14,11 @@
1414 config RTLLIB_CRYPTO_CCMP
1515 tristate "Support for rtllib CCMP crypto"
1616 depends on RTLLIB
17
+ select CRYPTO
1718 select CRYPTO_AES
19
+ select CRYPTO_CCM
1820 default y
19
- ---help---
21
+ help
2022 CCMP crypto driver for rtllib.
2123
2224 If you enabled RTLLIB, you want this.
....@@ -24,20 +26,21 @@
2426 config RTLLIB_CRYPTO_TKIP
2527 tristate "Support for rtllib TKIP crypto"
2628 depends on RTLLIB
27
- select CRYPTO_ARC4
29
+ select CRYPTO
30
+ select CRYPTO_LIB_ARC4
2831 select CRYPTO_MICHAEL_MIC
2932 default y
30
- ---help---
33
+ help
3134 TKIP crypto driver for rtllib.
3235
3336 If you enabled RTLLIB, you want this.
3437
3538 config RTLLIB_CRYPTO_WEP
3639 tristate "Support for rtllib WEP crypto"
37
- select CRYPTO_ARC4
40
+ select CRYPTO_LIB_ARC4
3841 depends on RTLLIB
3942 default y
40
- ---help---
43
+ help
4144 TKIP crypto driver for rtllib.
4245
4346 If you enabled RTLLIB, you want this.