staging: lustre: include: linux: libcfs: linux: Removed line continuations.
authorGulsah Kose <gulsah.1004@gmail.com>
Tue, 30 Sep 2014 18:59:20 +0000 (21:59 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 2 Oct 2014 16:56:46 +0000 (09:56 -0700)
This patch fixes "Avoid unnecessary line continuations" checkpatch.pl
warning in linux-time.h

Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/include/linux/libcfs/linux/linux-time.h

index 0709ee2..0fc490b 100644 (file)
@@ -106,8 +106,7 @@ static inline void cfs_duration_usec(long d, struct timeval *s)
        s->tv_usec = t;
 #else
        s->tv_sec = d / HZ;
-       s->tv_usec = ((d - (long)s->tv_sec * HZ) * \
-               ONE_MILLION) / HZ;
+       s->tv_usec = ((d - (long)s->tv_sec * HZ) * ONE_MILLION) / HZ;
 #endif
 }