treewide: replace '---help---' in Kconfig files with 'help'
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>
This commit is contained in:
@@ -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:
|
||||
|
Reference in New Issue
Block a user