aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorGulsah Kose <gulsah.1004@gmail.com>2014-09-30 21:59:20 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-10-02 09:56:46 -0700
commit4de8e0d8171a6657c748e15914abbf60846c5ace (patch)
treec03cd7ce769e4777df3e21018f6b448ace9ab487 /drivers/staging
parentstaging: lustre: include: linux: libcfs: Removed unnecessary else expression. (diff)
downloadlinux-dev-4de8e0d8171a6657c748e15914abbf60846c5ace.tar.xz
linux-dev-4de8e0d8171a6657c748e15914abbf60846c5ace.zip
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>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/lustre/include/linux/libcfs/linux/linux-time.h3
1 files changed, 1 insertions, 2 deletions
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
}