OSDN Git Service

Staging: android: fix line length coding style issue in sync_debug.c
authorSteve Pennington <sgpenn@gmail.com>
Wed, 24 Dec 2014 15:33:02 +0000 (09:33 -0600)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 18 Jan 2015 00:17:11 +0000 (16:17 -0800)
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>
drivers/staging/android/sync_debug.c

index 1532a86..91ed2c4 100644 (file)
@@ -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);
        }