]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Staging: lustre: Fix no spaces at the start of the line
authorRashika Kheria <rashika.kheria@gmail.com>
Sat, 26 Oct 2013 10:52:32 +0000 (16:22 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 27 Oct 2013 03:41:22 +0000 (20:41 -0700)
This patch fixes the following checkpatch.pl warning in lustre/ldlm/interval_tree.c-
WARNING: please, no spaces at the start of a line

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/ldlm/interval_tree.c

index ced33557a602793bf17410af4c7d3fde67e059ba..d0e0998819bca2056e1c9e29e180860a335e1185 100644 (file)
@@ -125,11 +125,11 @@ static inline __u64 min_u64(__u64 x, __u64 y)
 
 #define interval_for_each(node, root)             \
 for (node = interval_first(root); node != NULL;         \
-     node = interval_next(node))
+       node = interval_next(node))
 
 #define interval_for_each_reverse(node, root)     \
 for (node = interval_last(root); node != NULL;   \
-     node = interval_prev(node))
+       node = interval_prev(node))
 
 static struct interval_node *interval_first(struct interval_node *node)
 {