diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-06-13 18:50:22 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-06-13 18:57:21 +0200 |
commit | a7f7f6248d9740d710fd6bd190293fe5e16410ac (patch) | |
tree | dc59d36a552f7e25f909f5b2edc83f96c013befa /drivers/net/dsa/Kconfig | |
parent | kbuild: fix broken builds because of GZIP,BZIP2,LZOP variables (diff) | |
download | linux-a7f7f6248d9740d710fd6bd190293fe5e16410ac.tar.xz linux-a7f7f6248d9740d710fd6bd190293fe5e16410ac.zip |
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/dsa/Kconfig')
-rw-r--r-- | drivers/net/dsa/Kconfig | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/drivers/net/dsa/Kconfig b/drivers/net/dsa/Kconfig index 2d38dbc9dd8c..d0024cb30a7b 100644 --- a/drivers/net/dsa/Kconfig +++ b/drivers/net/dsa/Kconfig @@ -12,7 +12,7 @@ config NET_DSA_BCM_SF2 select BCM7XXX_PHY select MDIO_BCM_UNIMAC select B53 - ---help--- + help This enables support for the Broadcom Starfighter 2 Ethernet switch chips. @@ -20,7 +20,7 @@ config NET_DSA_LOOP tristate "DSA mock-up Ethernet switch chip support" depends on NET_DSA select FIXED_PHY - ---help--- + help This enables support for a fake mock-up switch chip which exercises the DSA APIs. @@ -28,7 +28,7 @@ config NET_DSA_LANTIQ_GSWIP tristate "Lantiq / Intel GSWIP" depends on HAS_IOMEM && NET_DSA select NET_DSA_TAG_GSWIP - ---help--- + help This enables support for the Lantiq / Intel GSWIP 2.1 found in the xrx200 / VR9 SoC. @@ -36,7 +36,7 @@ config NET_DSA_MT7530 tristate "Mediatek MT7530 Ethernet switch support" depends on NET_DSA select NET_DSA_TAG_MTK - ---help--- + help This enables support for the Mediatek MT7530 Ethernet switch chip. @@ -44,7 +44,7 @@ config NET_DSA_MV88E6060 tristate "Marvell 88E6060 ethernet switch chip support" depends on NET_DSA select NET_DSA_TAG_TRAILER - ---help--- + help This enables support for the Marvell 88E6060 ethernet switch chip. @@ -63,7 +63,7 @@ config NET_DSA_QCA8K depends on NET_DSA select NET_DSA_TAG_QCA select REGMAP - ---help--- + help This enables support for the Qualcomm Atheros QCA8K Ethernet switch chips. @@ -74,7 +74,7 @@ config NET_DSA_REALTEK_SMI select IRQ_DOMAIN select REALTEK_PHY select REGMAP - ---help--- + help This enables support for the Realtek SMI-based switch chips, currently only RTL8366RB. @@ -82,7 +82,7 @@ config NET_DSA_SMSC_LAN9303 tristate select NET_DSA_TAG_LAN9303 select REGMAP - ---help--- + help This enables support for the SMSC/Microchip LAN9303 3 port ethernet switch chips. @@ -91,7 +91,7 @@ config NET_DSA_SMSC_LAN9303_I2C depends on NET_DSA && I2C select NET_DSA_SMSC_LAN9303 select REGMAP_I2C - ---help--- + help Enable access functions if the SMSC/Microchip LAN9303 is configured for I2C managed mode. @@ -99,7 +99,7 @@ config NET_DSA_SMSC_LAN9303_MDIO tristate "SMSC/Microchip LAN9303 3-ports 10/100 ethernet switch in MDIO managed mode" depends on NET_DSA select NET_DSA_SMSC_LAN9303 - ---help--- + help Enable access functions if the SMSC/Microchip LAN9303 is configured for MDIO managed mode. @@ -109,7 +109,7 @@ config NET_DSA_VITESSE_VSC73XX select FIXED_PHY select VITESSE_PHY select GPIOLIB - ---help--- + help This enables support for the Vitesse VSC7385, VSC7388, VSC7395 and VSC7398 SparX integrated ethernet switches. @@ -118,7 +118,7 @@ config NET_DSA_VITESSE_VSC73XX_SPI depends on NET_DSA depends on SPI select NET_DSA_VITESSE_VSC73XX - ---help--- + help This enables support for the Vitesse VSC7385, VSC7388, VSC7395 and VSC7398 SparX integrated ethernet switches in SPI managed mode. @@ -127,7 +127,7 @@ config NET_DSA_VITESSE_VSC73XX_PLATFORM depends on NET_DSA depends on HAS_IOMEM select NET_DSA_VITESSE_VSC73XX - ---help--- + help This enables support for the Vitesse VSC7385, VSC7388, VSC7395 and VSC7398 SparX integrated ethernet switches, connected over a CPU-attached address bus and work in memory-mapped I/O mode. |