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

Commit 4de8e0d8 authored by Gulsah Kose's avatar Gulsah Kose Committed by Greg Kroah-Hartman
Browse files

staging: lustre: include: linux: libcfs: linux: Removed line continuations.



This patch fixes "Avoid unnecessary line continuations" checkpatch.pl
warning in linux-time.h

Signed-off-by: default avatarGulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fa44eae4
Loading
Loading
Loading
Loading
+1 −2
Original line number Original line Diff line number Diff line
@@ -106,8 +106,7 @@ static inline void cfs_duration_usec(long d, struct timeval *s)
	s->tv_usec = t;
	s->tv_usec = t;
#else
#else
	s->tv_sec = d / HZ;
	s->tv_sec = d / HZ;
	s->tv_usec = ((d - (long)s->tv_sec * HZ) * \
	s->tv_usec = ((d - (long)s->tv_sec * HZ) * ONE_MILLION) / HZ;
		ONE_MILLION) / HZ;
#endif
#endif
}
}