mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
a7f7f6248d
Since commit 84af7a6194
("checkpatch: kconfig: prefer 'help' over
'---help---'"), the number of '---help---' has been gradually
decreasing, but there are still more than 2400 instances.
This commit finishes the conversion. While I touched the lines,
I also fixed the indentation.
There are a variety of indentation styles found.
a) 4 spaces + '---help---'
b) 7 spaces + '---help---'
c) 8 spaces + '---help---'
d) 1 space + 1 tab + '---help---'
e) 1 tab + '---help---' (correct indentation)
f) 1 tab + 1 space + '---help---'
g) 1 tab + 2 spaces + '---help---'
In order to convert all of them to 1 tab + 'help', I ran the
following commend:
$ find . -name 'Kconfig*' | xargs sed -i 's/^[[:space:]]*---help---/\thelp/'
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# RTL8XXXU Wireless LAN device configuration
|
|
#
|
|
config RTL8XXXU
|
|
tristate "RTL8723AU/RTL8188[CR]U/RTL819[12]CU (mac80211) support"
|
|
depends on MAC80211 && USB
|
|
help
|
|
This is an alternative driver for various Realtek RTL8XXX
|
|
parts written to utilize the Linux mac80211 stack.
|
|
The driver is known to work with a number of RTL8723AU,
|
|
RL8188CU, RTL8188RU, RTL8191CU, and RTL8192CU devices
|
|
|
|
This driver is under development and has a limited feature
|
|
set. In particular it does not yet support 40MHz channels
|
|
and power management. However it should have a smaller
|
|
memory footprint than the vendor drivers and benefits
|
|
from the in kernel mac80211 stack.
|
|
|
|
It can coexist with drivers from drivers/staging/rtl8723au,
|
|
drivers/staging/rtl8192u, and drivers/net/wireless/rtlwifi,
|
|
but you will need to control which module you wish to load.
|
|
|
|
To compile this driver as a module, choose M here: the module will
|
|
be called r8xxxu. If unsure, say N.
|
|
|
|
config RTL8XXXU_UNTESTED
|
|
bool "Include support for untested Realtek 8xxx USB devices (EXPERIMENTAL)"
|
|
depends on RTL8XXXU
|
|
help
|
|
This option enables detection of Realtek 8723/8188/8191/8192 WiFi
|
|
USB devices which have not been tested directly by the driver
|
|
author or reported to be working by third parties.
|
|
|
|
Please report your results!
|