Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0541cdf5 authored by Steve Pennington's avatar Steve Pennington Committed by Greg Kroah-Hartman
Browse files

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: default avatarSteve Pennington <sgpenn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 13c11072
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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);
	}