All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Replace '--help--' with 'help' in Kconfig
@ 2019-03-20  4:44 Wentao Cai
  2019-03-20  4:44 ` [PATCH 1/3] Staging: unisys: visorhba: " Wentao Cai
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Wentao Cai @ 2019-03-20  4:44 UTC (permalink / raw)
  To: David Kershner, Greg Kroah-Hartman; +Cc: outreachy-kernel, Wentao Cai

Replace '--help--' with 'help' to silence checkpatch.pl warning: 
WARNING: prefer 'help' over '---help---' for new help texts 

Wentao Cai (3):
  Staging: unisys: visorhba: Replace '--help--' with 'help' in Kconfig
  Staging: unisys: visorinput: Replace '--help--' with 'help' in Kconfig
  Staging: unisys: visornic: Replace '--help--' with 'help' in Kconfig

 drivers/staging/unisys/visorhba/Kconfig   | 12 ++++++------
 drivers/staging/unisys/visorinput/Kconfig | 14 +++++++-------
 drivers/staging/unisys/visornic/Kconfig   | 14 +++++++-------
 3 files changed, 20 insertions(+), 20 deletions(-)

-- 
2.11.0



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

* [PATCH 1/3] Staging: unisys: visorhba: Replace '--help--' with 'help' in Kconfig
  2019-03-20  4:44 [PATCH 0/3] Replace '--help--' with 'help' in Kconfig Wentao Cai
@ 2019-03-20  4:44 ` Wentao Cai
  2019-03-20  4:45 ` [PATCH 2/3] Staging: unisys: visorinput: " Wentao Cai
  2019-03-20  4:45 ` [PATCH 3/3] Staging: unisys: visornic: " Wentao Cai
  2 siblings, 0 replies; 4+ messages in thread
From: Wentao Cai @ 2019-03-20  4:44 UTC (permalink / raw)
  To: David Kershner, Greg Kroah-Hartman; +Cc: outreachy-kernel, Wentao Cai

Replace '--help--' in Kconfig and indent the subsequent text to silence
checkpatch.pl
warning:
WARNING: prefer 'help' over '---help---' for new help texts

Signed-off-by: Wentao Cai <etsai042@gmail.com>
---
 drivers/staging/unisys/visorhba/Kconfig | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/unisys/visorhba/Kconfig b/drivers/staging/unisys/visorhba/Kconfig
index 241d8038261c..fb592f7cb7c3 100644
--- a/drivers/staging/unisys/visorhba/Kconfig
+++ b/drivers/staging/unisys/visorhba/Kconfig
@@ -5,10 +5,10 @@
 config UNISYS_VISORHBA
 	tristate "Unisys visorhba driver"
 	depends on UNISYSSPAR && UNISYS_VISORBUS && SCSI
-	---help---
-	The Unisys visorhba driver provides support for s-Par HBA
-	devices exposed on the s-Par visorbus. When a message is sent
-	to visorbus to create a HBA device, the probe function of
-	visorhba is called to create the scsi device.
-	If you say Y here, you will enable the Unisys visorhba driver.
+	help
+		The Unisys visorhba driver provides support for s-Par HBA
+		devices exposed on the s-Par visorbus. When a message is sent
+		to visorbus to create a HBA device, the probe function of
+		visorhba is called to create the scsi device.
+		If you say Y here, you will enable the Unisys visorhba driver.
 
-- 
2.11.0



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

* [PATCH 2/3] Staging: unisys: visorinput: Replace '--help--' with 'help' in Kconfig
  2019-03-20  4:44 [PATCH 0/3] Replace '--help--' with 'help' in Kconfig Wentao Cai
  2019-03-20  4:44 ` [PATCH 1/3] Staging: unisys: visorhba: " Wentao Cai
@ 2019-03-20  4:45 ` Wentao Cai
  2019-03-20  4:45 ` [PATCH 3/3] Staging: unisys: visornic: " Wentao Cai
  2 siblings, 0 replies; 4+ messages in thread
From: Wentao Cai @ 2019-03-20  4:45 UTC (permalink / raw)
  To: David Kershner, Greg Kroah-Hartman; +Cc: outreachy-kernel, Wentao Cai

Replace '--help--' in Kconfig and indent the subsequent text to silence
checkpatch.pl
warning:
WARNING: prefer 'help' over '---help---' for new help texts

Signed-off-by: Wentao Cai <etsai042@gmail.com>
---
 drivers/staging/unisys/visorinput/Kconfig | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/staging/unisys/visorinput/Kconfig b/drivers/staging/unisys/visorinput/Kconfig
index a3817e0f7e5c..1b8efc2fd8c8 100644
--- a/drivers/staging/unisys/visorinput/Kconfig
+++ b/drivers/staging/unisys/visorinput/Kconfig
@@ -5,11 +5,11 @@
 config UNISYS_VISORINPUT
 	tristate "Unisys visorinput driver"
 	depends on UNISYSSPAR && UNISYS_VISORBUS && INPUT
-	---help---
-	The Unisys s-Par visorinput driver provides a virtualized system
-	console (keyboard and mouse) that is accessible through the
-	s-Par firmware's user interface. s-Par provides video using the EFI
-	GOP protocol, so If this driver is not present, the Linux guest should
-	still boot with visible output in the partition desktop, but keyboard
-	and mouse interaction will not be available.
+	help
+		The Unisys s-Par visorinput driver provides a virtualized system
+		console (keyboard and mouse) that is accessible through the
+		s-Par firmware's user interface. s-Par provides video using the EFI
+		GOP protocol, so If this driver is not present, the Linux guest should
+		still boot with visible output in the partition desktop, but keyboard
+		and mouse interaction will not be available.
 
-- 
2.11.0



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

* [PATCH 3/3] Staging: unisys: visornic: Replace '--help--' with 'help' in Kconfig
  2019-03-20  4:44 [PATCH 0/3] Replace '--help--' with 'help' in Kconfig Wentao Cai
  2019-03-20  4:44 ` [PATCH 1/3] Staging: unisys: visorhba: " Wentao Cai
  2019-03-20  4:45 ` [PATCH 2/3] Staging: unisys: visorinput: " Wentao Cai
@ 2019-03-20  4:45 ` Wentao Cai
  2 siblings, 0 replies; 4+ messages in thread
From: Wentao Cai @ 2019-03-20  4:45 UTC (permalink / raw)
  To: David Kershner, Greg Kroah-Hartman; +Cc: outreachy-kernel, Wentao Cai

Replace '--help--' in Kconfig and indent the subsequent text to silence
checkpatch.pl
warning:
WARNING: prefer 'help' over '---help---' for new help texts

Signed-off-by: Wentao Cai <etsai042@gmail.com>
---
 drivers/staging/unisys/visornic/Kconfig | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/staging/unisys/visornic/Kconfig b/drivers/staging/unisys/visornic/Kconfig
index 1676dc7072d5..865f8963409e 100644
--- a/drivers/staging/unisys/visornic/Kconfig
+++ b/drivers/staging/unisys/visornic/Kconfig
@@ -5,11 +5,11 @@
 config UNISYS_VISORNIC
 	tristate "Unisys visornic driver"
 	depends on UNISYSSPAR && UNISYS_VISORBUS && NET
-	---help---
-	The Unisys Visornic driver provides support for s-Par network
-	devices exposed on the s-Par visorbus. When a message is sent
-	to visorbus to create a network device, the probe function of
-	visornic is called to create the netdev device. Networking on
-	s-Par switches will not work if this driver is not selected.
-	If you say Y here, you will enable the Unisys visornic driver.
+	help
+		The Unisys Visornic driver provides support for s-Par network
+		devices exposed on the s-Par visorbus. When a message is sent
+		to visorbus to create a network device, the probe function of
+		visornic is called to create the netdev device. Networking on
+		s-Par switches will not work if this driver is not selected.
+		If you say Y here, you will enable the Unisys visornic driver.
 
-- 
2.11.0



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

end of thread, other threads:[~2019-03-20  4:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-20  4:44 [PATCH 0/3] Replace '--help--' with 'help' in Kconfig Wentao Cai
2019-03-20  4:44 ` [PATCH 1/3] Staging: unisys: visorhba: " Wentao Cai
2019-03-20  4:45 ` [PATCH 2/3] Staging: unisys: visorinput: " Wentao Cai
2019-03-20  4:45 ` [PATCH 3/3] Staging: unisys: visornic: " Wentao Cai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.