Browse Source

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: Gulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Gulsah Kose 11 years ago
parent
commit
4de8e0d817
1 changed files with 1 additions and 2 deletions
  1. 1 2
      drivers/staging/lustre/include/linux/libcfs/linux/linux-time.h

+ 1 - 2
drivers/staging/lustre/include/linux/libcfs/linux/linux-time.h

@@ -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
 }