linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 0/6] use help instead of ---help--- in Kconfig
@ 2019-05-18  6:33 Moses Christopher
  2019-05-18  6:33 ` [PATCH v1 1/6] staging: fsl-dpaa2: " Moses Christopher
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Moses Christopher @ 2019-05-18  6:33 UTC (permalink / raw)
  To: gregkh, linux-kernel
  Cc: Larry.Finger, david.kershner, forest, davem, ruxandra.radulescu,
	yangbo.lu, arnd, christian.gromm, insafonov, hdegoede, devel,
	sparmaintainer, Moses Christopher

Resolve the Warning that comes from the Kconfig file, which states,
"WARNING: prefer 'help' over '---help---' for new help texts"

Moses Christopher (6):
  staging: fsl-dpaa2: use help instead of ---help--- in Kconfig
  staging: most: use help instead of ---help--- in Kconfig
  staging: unisys: use help instead of ---help--- in Kconfig
  staging: rtl8188eu: use help instead of ---help--- in Kconfig
  staging: rtl8723bs: use help instead of ---help--- in Kconfig
  staging: vt665*: use help instead of ---help--- in Kconfig

 drivers/staging/fsl-dpaa2/Kconfig | 8 ++++----
 drivers/staging/most/Kconfig      | 2 +-
 drivers/staging/rtl8188eu/Kconfig | 4 ++--
 drivers/staging/rtl8723bs/Kconfig | 2 +-
 drivers/staging/unisys/Kconfig    | 4 ++--
 drivers/staging/vt6655/Kconfig    | 5 ++---
 drivers/staging/vt6656/Kconfig    | 5 ++---
 7 files changed, 14 insertions(+), 16 deletions(-)

-- 
2.17.1


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH v1 1/6] staging: fsl-dpaa2: use help instead of ---help--- in Kconfig
  2019-05-18  6:33 [PATCH v1 0/6] use help instead of ---help--- in Kconfig Moses Christopher
@ 2019-05-18  6:33 ` Moses Christopher
  2019-05-18  6:33 ` [PATCH v1 2/6] staging: most: " Moses Christopher
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Moses Christopher @ 2019-05-18  6:33 UTC (permalink / raw)
  To: gregkh, linux-kernel
  Cc: Larry.Finger, david.kershner, forest, davem, ruxandra.radulescu,
	yangbo.lu, arnd, christian.gromm, insafonov, hdegoede, devel,
	sparmaintainer, Moses Christopher

  - Resolve the following warning from the Kconfig,
    "WARNING: prefer 'help' over '---help---' for new help texts"

Signed-off-by: Moses Christopher <moseschristopherb@gmail.com>
---
 drivers/staging/fsl-dpaa2/Kconfig | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/fsl-dpaa2/Kconfig b/drivers/staging/fsl-dpaa2/Kconfig
index 368837cdf281..244237bb068a 100644
--- a/drivers/staging/fsl-dpaa2/Kconfig
+++ b/drivers/staging/fsl-dpaa2/Kconfig
@@ -6,7 +6,7 @@
 config FSL_DPAA2
 	bool "Freescale DPAA2 devices"
 	depends on FSL_MC_BUS
-	---help---
+	help
 	  Build drivers for Freescale DataPath Acceleration
 	  Architecture (DPAA2) family of SoCs.
 
@@ -14,6 +14,6 @@ config FSL_DPAA2_ETHSW
 	tristate "Freescale DPAA2 Ethernet Switch"
 	depends on FSL_DPAA2
 	depends on NET_SWITCHDEV
-	---help---
-	Driver for Freescale DPAA2 Ethernet Switch. Select
-	BRIDGE to have support for bridge tools.
+	help
+	  Driver for Freescale DPAA2 Ethernet Switch. Select
+	  BRIDGE to have support for bridge tools.
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v1 2/6] staging: most: use help instead of ---help--- in Kconfig
  2019-05-18  6:33 [PATCH v1 0/6] use help instead of ---help--- in Kconfig Moses Christopher
  2019-05-18  6:33 ` [PATCH v1 1/6] staging: fsl-dpaa2: " Moses Christopher
@ 2019-05-18  6:33 ` Moses Christopher
  2019-05-18  6:33 ` [PATCH v1 3/6] staging: unisys: " Moses Christopher
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Moses Christopher @ 2019-05-18  6:33 UTC (permalink / raw)
  To: gregkh, linux-kernel
  Cc: Larry.Finger, david.kershner, forest, davem, ruxandra.radulescu,
	yangbo.lu, arnd, christian.gromm, insafonov, hdegoede, devel,
	sparmaintainer, Moses Christopher

  - Resolve the following warning from the Kconfig,
    "WARNING: prefer 'help' over '---help---' for new help texts

Signed-off-by: Moses Christopher <moseschristopherb@gmail.com>
---
 drivers/staging/most/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/most/Kconfig b/drivers/staging/most/Kconfig
index db32ea7d1743..8948d5246409 100644
--- a/drivers/staging/most/Kconfig
+++ b/drivers/staging/most/Kconfig
@@ -3,7 +3,7 @@ menuconfig MOST
         tristate "MOST support"
 	depends on HAS_DMA && CONFIGFS_FS
         default n
-        ---help---
+        help
 	  Say Y here if you want to enable MOST support.
 	  This driver needs at least one additional component to enable the
 	  desired access from userspace (e.g. character devices) and one that
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v1 3/6] staging: unisys: use help instead of ---help--- in Kconfig
  2019-05-18  6:33 [PATCH v1 0/6] use help instead of ---help--- in Kconfig Moses Christopher
  2019-05-18  6:33 ` [PATCH v1 1/6] staging: fsl-dpaa2: " Moses Christopher
  2019-05-18  6:33 ` [PATCH v1 2/6] staging: most: " Moses Christopher
@ 2019-05-18  6:33 ` Moses Christopher
  2019-05-18  6:33 ` [PATCH v1 4/6] staging: rtl8188eu: " Moses Christopher
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Moses Christopher @ 2019-05-18  6:33 UTC (permalink / raw)
  To: gregkh, linux-kernel
  Cc: Larry.Finger, david.kershner, forest, davem, ruxandra.radulescu,
	yangbo.lu, arnd, christian.gromm, insafonov, hdegoede, devel,
	sparmaintainer, Moses Christopher

  - Resolve the following warning from the Kconfig,
    "WARNING: prefer 'help' over '---help---' for new help texts"

Signed-off-by: Moses Christopher <moseschristopherb@gmail.com>
---
 drivers/staging/unisys/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/unisys/Kconfig b/drivers/staging/unisys/Kconfig
index dc5e1bddc085..43fe1ce538e1 100644
--- a/drivers/staging/unisys/Kconfig
+++ b/drivers/staging/unisys/Kconfig
@@ -4,8 +4,8 @@
 #
 menuconfig UNISYSSPAR
 	bool "Unisys SPAR driver support"
-	---help---
-	Support for the Unisys SPAR drivers
+	help
+	  Support for the Unisys SPAR drivers
 
 if UNISYSSPAR
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v1 4/6] staging: rtl8188eu: use help instead of ---help--- in Kconfig
  2019-05-18  6:33 [PATCH v1 0/6] use help instead of ---help--- in Kconfig Moses Christopher
                   ` (2 preceding siblings ...)
  2019-05-18  6:33 ` [PATCH v1 3/6] staging: unisys: " Moses Christopher
@ 2019-05-18  6:33 ` Moses Christopher
  2019-05-18  6:33 ` [PATCH v1 5/6] staging: rtl8723bs: " Moses Christopher
  2019-05-18  6:33 ` [PATCH v1 6/6] staging: vt665*: " Moses Christopher
  5 siblings, 0 replies; 8+ messages in thread
From: Moses Christopher @ 2019-05-18  6:33 UTC (permalink / raw)
  To: gregkh, linux-kernel
  Cc: Larry.Finger, david.kershner, forest, davem, ruxandra.radulescu,
	yangbo.lu, arnd, christian.gromm, insafonov, hdegoede, devel,
	sparmaintainer, Moses Christopher

  - Resolve the following warning from the Kconfig,
    "WARNING: prefer 'help' over '---help---' for new help texts"

Signed-off-by: Moses Christopher <moseschristopherb@gmail.com>
---
 drivers/staging/rtl8188eu/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/rtl8188eu/Kconfig b/drivers/staging/rtl8188eu/Kconfig
index 4f7ef287a0f2..970d5abd6336 100644
--- a/drivers/staging/rtl8188eu/Kconfig
+++ b/drivers/staging/rtl8188eu/Kconfig
@@ -8,7 +8,7 @@ config R8188EU
 	select LIB80211
 	select LIB80211_CRYPT_WEP
 	select LIB80211_CRYPT_CCMP
-	---help---
+	help
 	This option adds the Realtek RTL8188EU USB device such as TP-Link TL-WN725N.
 	If built as a module, it will be called r8188eu.
 
@@ -17,7 +17,7 @@ if R8188EU
 config 88EU_AP_MODE
 	bool "Realtek RTL8188EU AP mode"
 	default y
-	---help---
+	help
 	This option enables Access Point mode. Unless you know that your system
 	will never be used as an AP, or the target system has limited memory,
 	"Y" should be selected.
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v1 5/6] staging: rtl8723bs: use help instead of ---help--- in Kconfig
  2019-05-18  6:33 [PATCH v1 0/6] use help instead of ---help--- in Kconfig Moses Christopher
                   ` (3 preceding siblings ...)
  2019-05-18  6:33 ` [PATCH v1 4/6] staging: rtl8188eu: " Moses Christopher
@ 2019-05-18  6:33 ` Moses Christopher
  2019-05-20  8:48   ` Greg KH
  2019-05-18  6:33 ` [PATCH v1 6/6] staging: vt665*: " Moses Christopher
  5 siblings, 1 reply; 8+ messages in thread
From: Moses Christopher @ 2019-05-18  6:33 UTC (permalink / raw)
  To: gregkh, linux-kernel
  Cc: Larry.Finger, david.kershner, forest, davem, ruxandra.radulescu,
	yangbo.lu, arnd, christian.gromm, insafonov, hdegoede, devel,
	sparmaintainer, Moses Christopher

  - Resolve the following warning from the Kconfig,
    "WARNING: prefer 'help' over '---help---' for new help texts"

Signed-off-by: Moses Christopher <moseschristopherb@gmail.com>
---
 drivers/staging/rtl8723bs/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8723bs/Kconfig b/drivers/staging/rtl8723bs/Kconfig
index 744091d46f4c..a88467334dac 100644
--- a/drivers/staging/rtl8723bs/Kconfig
+++ b/drivers/staging/rtl8723bs/Kconfig
@@ -5,7 +5,7 @@ config RTL8723BS
 	depends on m
 	select WIRELESS_EXT
 	select WEXT_PRIV
-	---help---
+	help
 	This option enables support for RTL8723BS SDIO drivers, such as
 	the wifi found on the 1st gen Intel Compute Stick, the CHIP
 	and many other Intel Atom and ARM based devices.
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v1 6/6] staging: vt665*: use help instead of ---help--- in Kconfig
  2019-05-18  6:33 [PATCH v1 0/6] use help instead of ---help--- in Kconfig Moses Christopher
                   ` (4 preceding siblings ...)
  2019-05-18  6:33 ` [PATCH v1 5/6] staging: rtl8723bs: " Moses Christopher
@ 2019-05-18  6:33 ` Moses Christopher
  5 siblings, 0 replies; 8+ messages in thread
From: Moses Christopher @ 2019-05-18  6:33 UTC (permalink / raw)
  To: gregkh, linux-kernel
  Cc: Larry.Finger, david.kershner, forest, davem, ruxandra.radulescu,
	yangbo.lu, arnd, christian.gromm, insafonov, hdegoede, devel,
	sparmaintainer, Moses Christopher

  - Resolve the following warning from the Kconfig,
    "WARNING: prefer 'help' over '---help---' for new help texts"

Signed-off-by: Moses Christopher <moseschristopherb@gmail.com>
---
 drivers/staging/vt6655/Kconfig | 5 ++---
 drivers/staging/vt6656/Kconfig | 5 ++---
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/vt6655/Kconfig b/drivers/staging/vt6655/Kconfig
index e4b224fedf5b..d1cd5de46dcf 100644
--- a/drivers/staging/vt6655/Kconfig
+++ b/drivers/staging/vt6655/Kconfig
@@ -2,6 +2,5 @@
 config VT6655
    tristate "VIA Technologies VT6655 support"
    depends on PCI && MAC80211 && m
-   ---help---
-   This is a vendor-written driver for VIA VT6655.
-
+   help
+     This is a vendor-written driver for VIA VT6655.
diff --git a/drivers/staging/vt6656/Kconfig b/drivers/staging/vt6656/Kconfig
index 51e295265ba6..f52a3f1d9a2e 100644
--- a/drivers/staging/vt6656/Kconfig
+++ b/drivers/staging/vt6656/Kconfig
@@ -3,6 +3,5 @@ config VT6656
 	tristate "VIA Technologies VT6656 support"
 	depends on MAC80211 && USB && WLAN && m
 	select FW_LOADER
-	---help---
-	This is a vendor-written driver for VIA VT6656.
-
+	help
+	  This is a vendor-written driver for VIA VT6656.
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH v1 5/6] staging: rtl8723bs: use help instead of ---help--- in Kconfig
  2019-05-18  6:33 ` [PATCH v1 5/6] staging: rtl8723bs: " Moses Christopher
@ 2019-05-20  8:48   ` Greg KH
  0 siblings, 0 replies; 8+ messages in thread
From: Greg KH @ 2019-05-20  8:48 UTC (permalink / raw)
  To: Moses Christopher
  Cc: linux-kernel, Larry.Finger, david.kershner, forest, davem,
	ruxandra.radulescu, yangbo.lu, arnd, christian.gromm, insafonov,
	hdegoede, devel, sparmaintainer

On Sat, May 18, 2019 at 12:03:40PM +0530, Moses Christopher wrote:
>   - Resolve the following warning from the Kconfig,
>     "WARNING: prefer 'help' over '---help---' for new help texts"
> 
> Signed-off-by: Moses Christopher <moseschristopherb@gmail.com>
> ---
>  drivers/staging/rtl8723bs/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/rtl8723bs/Kconfig b/drivers/staging/rtl8723bs/Kconfig
> index 744091d46f4c..a88467334dac 100644
> --- a/drivers/staging/rtl8723bs/Kconfig
> +++ b/drivers/staging/rtl8723bs/Kconfig
> @@ -5,7 +5,7 @@ config RTL8723BS
>  	depends on m
>  	select WIRELESS_EXT
>  	select WEXT_PRIV
> -	---help---
> +	help
>  	This option enables support for RTL8723BS SDIO drivers, such as
>  	the wifi found on the 1st gen Intel Compute Stick, the CHIP
>  	and many other Intel Atom and ARM based devices.

No indentation here?  Why not?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2019-05-20  8:48 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-18  6:33 [PATCH v1 0/6] use help instead of ---help--- in Kconfig Moses Christopher
2019-05-18  6:33 ` [PATCH v1 1/6] staging: fsl-dpaa2: " Moses Christopher
2019-05-18  6:33 ` [PATCH v1 2/6] staging: most: " Moses Christopher
2019-05-18  6:33 ` [PATCH v1 3/6] staging: unisys: " Moses Christopher
2019-05-18  6:33 ` [PATCH v1 4/6] staging: rtl8188eu: " Moses Christopher
2019-05-18  6:33 ` [PATCH v1 5/6] staging: rtl8723bs: " Moses Christopher
2019-05-20  8:48   ` Greg KH
2019-05-18  6:33 ` [PATCH v1 6/6] staging: vt665*: " Moses Christopher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).