public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Staging:android: fix alignment match open paranthesis
@ 2016-08-01 15:20 ksourav
  2016-08-15 14:53 ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: ksourav @ 2016-08-01 15:20 UTC (permalink / raw)
  To: gregkh, arve, riandrews; +Cc: devel, linux-kernel, ksourav

This is a patch to fix alignment should match open paranthesis
warning given by checkpatch.pl in files sw_sync.c and sync_debug.c

Signed-off-by: ksourav <sourav.kir@gmail.com>
---
 drivers/staging/android/sw_sync.c    | 6 +++---
 drivers/staging/android/sync_debug.c | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/android/sw_sync.c b/drivers/staging/android/sw_sync.c
index 115c917..ce3f3ec 100644
--- a/drivers/staging/android/sw_sync.c
+++ b/drivers/staging/android/sw_sync.c
@@ -134,7 +134,7 @@ static void sync_timeline_signal(struct sync_timeline *obj, unsigned int inc)
  * NULL in case of error.
  */
 static struct sync_pt *sync_pt_create(struct sync_timeline *obj, int size,
-			     unsigned int value)
+				      unsigned int value)
 {
 	unsigned long flags;
 	struct sync_pt *pt;
@@ -204,13 +204,13 @@ static bool timeline_fence_enable_signaling(struct fence *fence)
 }
 
 static void timeline_fence_value_str(struct fence *fence,
-				    char *str, int size)
+				     char *str, int size)
 {
 	snprintf(str, size, "%d", fence->seqno);
 }
 
 static void timeline_fence_timeline_value_str(struct fence *fence,
-					     char *str, int size)
+					      char *str, int size)
 {
 	struct sync_timeline *parent = fence_parent(fence);
 
diff --git a/drivers/staging/android/sync_debug.c b/drivers/staging/android/sync_debug.c
index 4c5a855..eaa79b9 100644
--- a/drivers/staging/android/sync_debug.c
+++ b/drivers/staging/android/sync_debug.c
@@ -92,7 +92,7 @@ static void sync_print_fence(struct seq_file *s, struct fence *fence, bool show)
 	}
 
 	if (fence->ops->timeline_value_str &&
-		fence->ops->fence_value_str) {
+	    fence->ops->fence_value_str) {
 		char value[64];
 		bool success;
 
@@ -103,7 +103,7 @@ static void sync_print_fence(struct seq_file *s, struct fence *fence, bool show)
 			seq_printf(s, ": %s", value);
 
 			fence->ops->timeline_value_str(fence, value,
-						       sizeof(value));
+					sizeof(value));
 
 			if (strlen(value))
 				seq_printf(s, " / %s", value);
@@ -130,7 +130,7 @@ static void sync_print_obj(struct seq_file *s, struct sync_timeline *obj)
 }
 
 static void sync_print_sync_file(struct seq_file *s,
-				  struct sync_file *sync_file)
+				 struct sync_file *sync_file)
 {
 	int i;
 
-- 
2.7.4 (Apple Git-66)

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

* Re: [PATCH] Staging:android: fix alignment match open paranthesis
  2016-08-01 15:20 [PATCH] Staging:android: fix alignment match open paranthesis ksourav
@ 2016-08-15 14:53 ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2016-08-15 14:53 UTC (permalink / raw)
  To: ksourav; +Cc: arve, riandrews, devel, linux-kernel

On Mon, Aug 01, 2016 at 08:50:27PM +0530, ksourav wrote:
> This is a patch to fix alignment should match open paranthesis
> warning given by checkpatch.pl in files sw_sync.c and sync_debug.c
> 
> Signed-off-by: ksourav <sourav.kir@gmail.com>

I need a "full" name for a signed-off-by line, please.

thanks,

greg k-h

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

end of thread, other threads:[~2016-08-15 14:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-01 15:20 [PATCH] Staging:android: fix alignment match open paranthesis ksourav
2016-08-15 14:53 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox