aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/android/sync_debug.c
diff options
context:
space:
mode:
authorSteve Pennington <sgpenn@gmail.com>2014-12-24 09:33:02 -0600
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-01-17 16:17:11 -0800
commit0541cdf585a8f0049d81abc88a6d735ed2a010d8 (patch)
tree1a17c2472a17163b95443b40408492db19f6ea65 /drivers/staging/android/sync_debug.c
parentstaging:board: remove unnecessary function (diff)
downloadlinux-dev-0541cdf585a8f0049d81abc88a6d735ed2a010d8.tar.xz
linux-dev-0541cdf585a8f0049d81abc88a6d735ed2a010d8.zip
Staging: android: fix line length coding style issue in sync_debug.c
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@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/android/sync_debug.c')
-rw-r--r--drivers/staging/android/sync_debug.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/android/sync_debug.c b/drivers/staging/android/sync_debug.c
index 1532a86404be..91ed2c4cff45 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);
}