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/slip | |
parent | e4a42c82e943b97ce124539fcd7a47445b43fa0d (diff) |
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/slip')
-rw-r--r-- | drivers/net/slip/Kconfig | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/slip/Kconfig b/drivers/net/slip/Kconfig index 30bbafb0e3c7..ea68fc15c945 100644 --- a/drivers/net/slip/Kconfig +++ b/drivers/net/slip/Kconfig @@ -6,7 +6,7 @@ config SLIP tristate "SLIP (serial line) support" depends on TTY - ---help--- + help Say Y if you intend to use SLIP or CSLIP (compressed SLIP) to connect to your Internet service provider or to connect to some other local Unix box or if you want to configure your Linux box as a @@ -36,7 +36,7 @@ config SLIP config SLHC tristate - ---help--- + help This option enables Van Jacobsen serial line header compression routines. @@ -46,7 +46,7 @@ config SLIP_COMPRESSED bool "CSLIP compressed headers" depends on SLIP select SLHC - ---help--- + help This protocol is faster than SLIP because it uses compression on the TCP/IP headers (not on the data itself), but it has to be supported on both ends. Ask your access provider if you are not sure and @@ -61,7 +61,7 @@ config SLIP_COMPRESSED config SLIP_SMART bool "Keepalive and linefill" depends on SLIP - ---help--- + help Adds additional capabilities to the SLIP driver to support the RELCOM line fill and keepalive monitoring. Ideal on poor quality analogue lines. @@ -69,7 +69,7 @@ config SLIP_SMART config SLIP_MODE_SLIP6 bool "Six bit SLIP encapsulation" depends on SLIP - ---help--- + help Just occasionally you may need to run IP over hostile serial networks that don't pass all control characters or are only seven bit. Saying Y here adds an extra mode you can use with SLIP: |