[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1419435182-27322-1-git-send-email-sgpenn@gmail.com>
Date: Wed, 24 Dec 2014 09:33:02 -0600
From: Steve Pennington <sgpenn@...il.com>
To: gregkh@...uxfoundation.org, john.stultz@...aro.org,
maarten.lankhorst@...onical.com, daniel@...ll.ch,
sumit.semwal@...aro.org, tapaswenipathak@...il.com,
peter.senna@...il.com
Cc: devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
Steve Pennington <sgpenn@...il.com>
Subject: [PATCH] Staging: android: fix line length coding style issue in sync_debug.c
From: Steve Pennington <sgpenn@...il.com>
This is a patch to sync_debug.c that fixes an over 80 character warning found by the checkpatch.pl tool
Signed-off-by: Steve Pennington <sgpenn@...il.com>
---
drivers/staging/android/sync_debug.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/staging/android/sync_debug.c b/drivers/staging/android/sync_debug.c
index 1532a86..91ed2c4 100644
--- a/drivers/staging/android/sync_debug.c
+++ b/drivers/staging/android/sync_debug.c
@@ -96,7 +96,8 @@ static void sync_print_pt(struct seq_file *s, struct sync_pt *pt, bool fence)
sync_status_str(status));
if (status <= 0) {
- struct timespec64 ts64 = ktime_to_timespec64(pt->base.timestamp);
+ struct timespec64 ts64 =
+ ktime_to_timespec64(pt->base.timestamp);
seq_printf(s, "@%lld.%09ld", (s64)ts64.tv_sec, ts64.tv_nsec);
}
--
2.2.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists