All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: android: binder: fixed line over 80 caracters
@ 2016-03-12 23:40 Juliana Rodrigues
  2016-03-13  0:28 ` [Outreachy kernel] " Greg KH
  2016-03-13  0:29 ` Greg KH
  0 siblings, 2 replies; 3+ messages in thread
From: Juliana Rodrigues @ 2016-03-12 23:40 UTC (permalink / raw)
  To: outreachy-kernel

This patch fixes the following warning caused by checkpatch.pl:

WARNING: line over 80 characters
+                                       if (thread->looper & (BINDER_LOOPER_STATE_REGISTERED | BINDER_LOOPER_STATE_ENTERED)) {

Signed-off-by: Juliana Rodrigues <juliana.orod@gmail.com>
---
 drivers/android/binder.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/android/binder.c b/drivers/android/binder.c
index 7d00b7a..94190fc 100644
--- a/drivers/android/binder.c
+++ b/drivers/android/binder.c
@@ -2054,7 +2054,9 @@ static int binder_thread_write(struct binder_proc *proc,
 				ref->death = NULL;
 				if (list_empty(&death->work.entry)) {
 					death->work.type = BINDER_WORK_CLEAR_DEATH_NOTIFICATION;
-					if (thread->looper & (BINDER_LOOPER_STATE_REGISTERED | BINDER_LOOPER_STATE_ENTERED)) {
+					if (thread->looper & (
+						BINDER_LOOPER_STATE_REGISTERED |
+						BINDER_LOOPER_STATE_ENTERED)) {
 						list_add_tail(&death->work.entry, &thread->todo);
 					} else {
 						list_add_tail(&death->work.entry, &proc->todo);
-- 
2.7.2



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

end of thread, other threads:[~2016-03-13  0:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-12 23:40 [PATCH] staging: android: binder: fixed line over 80 caracters Juliana Rodrigues
2016-03-13  0:28 ` [Outreachy kernel] " Greg KH
2016-03-13  0:29 ` 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.