All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] Staging: gasket: sysfs: Fix string split issue.
@ 2019-03-18 17:54 Sanjana Sanikommu
  2019-03-18 20:06 ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Sanjana Sanikommu @ 2019-03-18 17:54 UTC (permalink / raw)
  To: gregkh; +Cc: outreachy-kernel

Concatenate a multi-line string constant into a single
line.Issue found by checkpatch.pl.

WARNING:quoted string split across line.

Signed-off-by: Sanjana Sanikommu <sanjana99reddy99@gmail.com>
---
Changes in v3:
Correct the subject line.

Changes in v2:
Fix the subject line.
 drivers/staging/gasket/gasket_sysfs.c | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/gasket/gasket_sysfs.c b/drivers/staging/gasket/gasket_sysfs.c
index fc45f0d13e87..a2d67c28f530 100644
--- a/drivers/staging/gasket/gasket_sysfs.c
+++ b/drivers/staging/gasket/gasket_sysfs.c
@@ -223,8 +223,7 @@ int gasket_sysfs_create_entries(struct device *device,
 
 	if (!mapping) {
 		dev_dbg(device,
-			"Creating entries for device without first "
-			"initializing mapping\n");
+			"Creating entries for device without first initializing mapping\n");
 		return -EINVAL;
 	}
 
@@ -233,8 +232,7 @@ int gasket_sysfs_create_entries(struct device *device,
 		i++) {
 		if (mapping->attribute_count == GASKET_SYSFS_MAX_NODES) {
 			dev_err(device,
-				"Maximum number of sysfs nodes reached for "
-				"device\n");
+				"Maximum number of sysfs nodes reached for device\n");
 			mutex_unlock(&mapping->mutex);
 			put_mapping(mapping);
 			return -ENOMEM;
@@ -264,8 +262,7 @@ void gasket_sysfs_remove_mapping(struct device *device)
 
 	if (!mapping) {
 		dev_err(device,
-			"Attempted to remove non-existent sysfs mapping to "
-			"device\n");
+			"Attempted to remove non-existent sysfs mapping to device\n");
 		return;
 	}
 
-- 
2.17.1



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

* Re: [PATCH v3] Staging: gasket: sysfs: Fix string split issue.
  2019-03-18 17:54 [PATCH v3] Staging: gasket: sysfs: Fix string split issue Sanjana Sanikommu
@ 2019-03-18 20:06 ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2019-03-18 20:06 UTC (permalink / raw)
  To: Sanjana Sanikommu; +Cc: outreachy-kernel

On Mon, Mar 18, 2019 at 11:24:26PM +0530, Sanjana Sanikommu wrote:
> Concatenate a multi-line string constant into a single
> line.Issue found by checkpatch.pl.
> 
> WARNING:quoted string split across line.
> 
> Signed-off-by: Sanjana Sanikommu <sanjana99reddy99@gmail.com>
> ---
> Changes in v3:
> Correct the subject line.

This patch is already in my tree.

thanks,

greg k-h


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

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

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-18 17:54 [PATCH v3] Staging: gasket: sysfs: Fix string split issue Sanjana Sanikommu
2019-03-18 20:06 ` Greg KH

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.