From a7f7f6248d9740d710fd6bd190293fe5e16410ac Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Sun, 14 Jun 2020 01:50:22 +0900 Subject: 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 --- drivers/net/ethernet/Kconfig | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'drivers/net/ethernet/Kconfig') diff --git a/drivers/net/ethernet/Kconfig b/drivers/net/ethernet/Kconfig index 4ded81b27d0a..de50e8b9e656 100644 --- a/drivers/net/ethernet/Kconfig +++ b/drivers/net/ethernet/Kconfig @@ -7,7 +7,7 @@ menuconfig ETHERNET bool "Ethernet driver support" depends on NET default y - ---help--- + help This section contains all the Ethernet device drivers. if ETHERNET @@ -48,7 +48,7 @@ config CX_ECAT tristate "Beckhoff CX5020 EtherCAT master support" depends on PCI depends on X86 || COMPILE_TEST - ---help--- + help Driver for EtherCAT master module located on CCAT FPGA that can be found on Beckhoff CX5020, and possibly other of CX Beckhoff CX series industrial PCs. @@ -62,7 +62,7 @@ config DNET tristate "Dave ethernet support (DNET)" depends on HAS_IOMEM select PHYLIB - ---help--- + help The Dave ethernet interface (DNET) is found on Qong Board FPGA. Say Y to include support for the DNET chip. @@ -89,7 +89,7 @@ config JME depends on PCI select CRC32 select MII - ---help--- + help This driver supports the PCI-Express gigabit ethernet adapters based on JMicron JMC250 chipset. @@ -99,20 +99,20 @@ config JME config KORINA tristate "Korina (IDT RC32434) Ethernet support" depends on MIKROTIK_RB532 - ---help--- + help If you have a Mikrotik RouterBoard 500 or IDT RC32434 based system say Y. Otherwise say N. config LANTIQ_ETOP tristate "Lantiq SoC ETOP driver" depends on SOC_TYPE_XWAY - ---help--- + help Support for the MII0 inside the Lantiq SoC config LANTIQ_XRX200 tristate "Lantiq / Intel xRX200 PMAC network driver" depends on SOC_TYPE_XWAY - ---help--- + help Support for the PMAC of the Gigabit switch (GSWIP) inside the Lantiq / Intel VRX200 VDSL SoC @@ -130,7 +130,7 @@ config FEALNX depends on PCI select CRC32 select MII - ---help--- + help Say Y here to support the Myson MTD-800 family of PCI-based Ethernet cards. @@ -150,7 +150,7 @@ config ETHOC select PHYLIB select CRC32 select BITREVERSE - ---help--- + help Say Y here if you want to use the OpenCores 10/100 Mbps Ethernet MAC. source "drivers/net/ethernet/packetengines/Kconfig" -- cgit v1.2.3-59-g8ed1b