diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-06-14 01:50:22 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-06-14 01:57:21 +0900 |
commit | a7f7f6248d9740d710fd6bd190293fe5e16410ac (patch) | |
tree | dc59d36a552f7e25f909f5b2edc83f96c013befa /drivers/net/wireless/atmel/Kconfig | |
parent | e4a42c82e943b97ce124539fcd7a47445b43fa0d (diff) | |
download | linux-a7f7f6248d9740d710fd6bd190293fe5e16410ac.tar.bz2 |
treewide: replace '---help---' in Kconfig files with 'help'
Since commit 84af7a6194e4 ("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>
Diffstat (limited to 'drivers/net/wireless/atmel/Kconfig')
-rw-r--r-- | drivers/net/wireless/atmel/Kconfig | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/wireless/atmel/Kconfig b/drivers/net/wireless/atmel/Kconfig index c2142c70f25d..ca45a1021cf4 100644 --- a/drivers/net/wireless/atmel/Kconfig +++ b/drivers/net/wireless/atmel/Kconfig @@ -2,7 +2,7 @@ config WLAN_VENDOR_ATMEL bool "Atmel devices" default y - ---help--- + help If you have a wireless card belonging to this class, say Y. Note that the answer to this question doesn't directly affect the @@ -19,7 +19,7 @@ config ATMEL select WEXT_PRIV select FW_LOADER select CRC32 - ---help--- + help A driver 802.11b wireless cards based on the Atmel fast-vnet chips. This driver supports standard Linux wireless extensions. @@ -33,7 +33,7 @@ config ATMEL config PCI_ATMEL tristate "Atmel at76c506 PCI cards" depends on ATMEL && PCI - ---help--- + help Enable support for PCI and mini-PCI cards containing the Atmel at76c506 chip. @@ -43,7 +43,7 @@ config PCMCIA_ATMEL select WIRELESS_EXT select FW_LOADER select CRC32 - ---help--- + help Enable support for PCMCIA cards containing the Atmel at76c502 and at76c504 chips. @@ -51,7 +51,7 @@ config AT76C50X_USB tristate "Atmel at76c503/at76c505/at76c505a USB cards" depends on MAC80211 && USB select FW_LOADER - ---help--- + help Enable support for USB Wireless devices using Atmel at76c503, at76c505 or at76c505a chips. |