diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-06-13 19:50:22 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-06-13 19:57:21 +0300 |
commit | a7f7f6248d9740d710fd6bd190293fe5e16410ac (patch) | |
tree | dc59d36a552f7e25f909f5b2edc83f96c013befa /drivers/net/wan/Kconfig | |
parent | e4a42c82e943b97ce124539fcd7a47445b43fa0d (diff) | |
download | linux-a7f7f6248d9740d710fd6bd190293fe5e16410ac.tar.xz |
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/wan/Kconfig')
-rw-r--r-- | drivers/net/wan/Kconfig | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/net/wan/Kconfig b/drivers/net/wan/Kconfig index 3e21726c36e8..39e5ab261d7c 100644 --- a/drivers/net/wan/Kconfig +++ b/drivers/net/wan/Kconfig @@ -5,7 +5,7 @@ menuconfig WAN bool "Wan interfaces support" - ---help--- + help Wide Area Networks (WANs), such as X.25, Frame Relay and leased lines, are used to interconnect Local Area Networks (LANs) over vast distances with data transfer rates significantly higher than those @@ -39,7 +39,7 @@ config HOSTESS_SV11 config COSA tristate "COSA/SRP sync serial boards support" depends on ISA && m && ISA_DMA_API && HDLC && VIRT_TO_BUS - ---help--- + help Driver for COSA and SRP synchronous serial boards. These boards allow to connect synchronous serial devices (for example @@ -63,7 +63,7 @@ config COSA config LANMEDIA tristate "LanMedia Corp. SSI/V.35, T1/E1, HSSI, T3 boards" depends on PCI && VIRT_TO_BUS && HDLC - ---help--- + help Driver for the following Lan Media family of serial boards: - LMC 1000 board allows you to connect synchronous serial devices @@ -251,7 +251,7 @@ config C101 config FARSYNC tristate "FarSync T-Series support" depends on HDLC && PCI - ---help--- + help Support for the FarSync T-Series X.21 (and V.35/V.24) cards by FarSite Communications Ltd. @@ -323,7 +323,7 @@ config IXP4XX_HSS config DLCI tristate "Frame Relay DLCI support" - ---help--- + help Support for the Frame Relay protocol. Frame Relay is a fast low-cost way to connect to a remote Internet @@ -370,7 +370,7 @@ config SDLA config LAPBETHER tristate "LAPB over Ethernet driver" depends on LAPB && X25 - ---help--- + help Driver for a pseudo device (typically called /dev/lapb0) which allows you to open an LAPB point-to-point connection to some other computer on your Ethernet network. @@ -386,7 +386,7 @@ config LAPBETHER config X25_ASY tristate "X.25 async driver" depends on LAPB && X25 && TTY - ---help--- + help Send and receive X.25 frames over regular asynchronous serial lines such as telephone lines equipped with ordinary modems. @@ -401,7 +401,7 @@ config X25_ASY config SBNI tristate "Granch SBNI12 Leased Line adapter support" depends on X86 - ---help--- + help Driver for ISA SBNI12-xx cards which are low cost alternatives to leased line modems. |