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/message | |
| parent | e4a42c82e943b97ce124539fcd7a47445b43fa0d (diff) | |
| download | linux-a7f7f6248d9740d710fd6bd190293fe5e16410ac.tar.bz2 | |
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/message')
| -rw-r--r-- | drivers/message/fusion/Kconfig | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/drivers/message/fusion/Kconfig b/drivers/message/fusion/Kconfig index ba770c5ea8ef..a3d0288fd0e2 100644 --- a/drivers/message/fusion/Kconfig +++ b/drivers/message/fusion/Kconfig @@ -3,7 +3,7 @@  menuconfig FUSION  	bool "Fusion MPT device support"  	depends on PCI -	---help--- +	help  	Say Y here to get to see options for Fusion Message  	Passing Technology (MPT) drivers.  	This option alone does not add any kernel code. @@ -16,7 +16,7 @@ config FUSION_SPI  	tristate "Fusion MPT ScsiHost drivers for SPI"  	depends on PCI && SCSI  	select SCSI_SPI_ATTRS -	---help--- +	help  	  SCSI HOST support for a parallel SCSI host adapters.  	  List of supported controllers: @@ -31,7 +31,7 @@ config FUSION_FC  	tristate "Fusion MPT ScsiHost drivers for FC"  	depends on PCI && SCSI  	depends on SCSI_FC_ATTRS -	---help--- +	help  	  SCSI HOST support for a Fiber Channel host adapters.  	  List of supported controllers: @@ -50,7 +50,7 @@ config FUSION_SAS  	tristate "Fusion MPT ScsiHost drivers for SAS"  	depends on PCI && SCSI  	select SCSI_SAS_ATTRS -	---help--- +	help  	  SCSI HOST support for a SAS host adapters.  	  List of supported controllers: @@ -75,7 +75,7 @@ config FUSION_MAX_SGE  config FUSION_CTL  	tristate "Fusion MPT misc device (ioctl) driver"  	depends on FUSION_SPI || FUSION_FC || FUSION_SAS -	---help--- +	help  	  The Fusion MPT misc device driver provides specialized control  	  of MPT adapters via system ioctl calls.  Use of ioctl calls to  	  the MPT driver requires that you create and use a misc device @@ -94,7 +94,7 @@ config FUSION_CTL  config FUSION_LAN  	tristate "Fusion MPT LAN driver"  	depends on FUSION_FC && NET_FC -	---help--- +	help  	  This module supports LAN IP traffic over Fibre Channel port(s)  	  on Fusion MPT compatible hardware (LSIFC9xx chips).  	  The physical interface used is defined in RFC 2625. @@ -110,7 +110,7 @@ config FUSION_LAN  config FUSION_LOGGING  	bool "Fusion MPT logging facility" -	---help--- +	help  	  This turns on a logging facility that can be used to debug a number  	  of Fusion MPT related problems. |