From: Gulsah Kose Date: Tue, 30 Sep 2014 18:59:20 +0000 (+0300) Subject: staging: lustre: include: linux: libcfs: linux: Removed line continuations. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=4de8e0d8171a6657c748e15914abbf60846c5ace;p=deliverable%2Flinux.git 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/include/linux/libcfs/linux/linux-time.h b/drivers/staging/lustre/include/linux/libcfs/linux/linux-time.h index 0709ee2d9d34..0fc490bac2b5 100644 --- a/drivers/staging/lustre/include/linux/libcfs/linux/linux-time.h +++ b/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 }