2019-05-18 06:36:03

by Moses Christopher

[permalink] [raw]
Subject: [PATCH v1 0/6] use help instead of ---help--- in Kconfig

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


2019-05-18 06:36:21

by Moses Christopher

[permalink] [raw]
Subject: [PATCH v1 2/6] staging: most: use help instead of ---help--- in Kconfig

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

Signed-off-by: Moses Christopher <[email protected]>
---
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

2019-05-18 06:37:16

by Moses Christopher

[permalink] [raw]
Subject: [PATCH v1 5/6] staging: rtl8723bs: use help instead of ---help--- in Kconfig

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

Signed-off-by: Moses Christopher <[email protected]>
---
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

2019-05-18 06:37:40

by Moses Christopher

[permalink] [raw]
Subject: [PATCH v1 4/6] staging: rtl8188eu: use help instead of ---help--- in Kconfig

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

Signed-off-by: Moses Christopher <[email protected]>
---
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

2019-05-18 07:02:00

by Moses Christopher

[permalink] [raw]
Subject: [PATCH v1 1/6] staging: fsl-dpaa2: use help instead of ---help--- in Kconfig

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

Signed-off-by: Moses Christopher <[email protected]>
---
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

2019-05-18 07:03:04

by Moses Christopher

[permalink] [raw]
Subject: [PATCH v1 6/6] staging: vt665*: use help instead of ---help--- in Kconfig

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

Signed-off-by: Moses Christopher <[email protected]>
---
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

2019-05-18 07:33:48

by Moses Christopher

[permalink] [raw]
Subject: [PATCH v1 3/6] staging: unisys: use help instead of ---help--- in Kconfig

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

Signed-off-by: Moses Christopher <[email protected]>
---
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

2019-05-20 10:00:45

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH v1 5/6] staging: rtl8723bs: use help instead of ---help--- in Kconfig

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 <[email protected]>
> ---
> 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