Staging: lustre: Fix space required after ','
authorRashika Kheria <rashika.kheria@gmail.com>
Sat, 26 Oct 2013 10:53:21 +0000 (16:23 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 27 Oct 2013 03:43:23 +0000 (20:43 -0700)
This patch fixes the following checkpatch.pl warning in lustre/ldlm/interval_tree.c-
ERROR: space required after that ',' (ctx:VxV)

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 d0e0998..fbe7672 100644 (file)
@@ -239,7 +239,7 @@ static void __rotate_change_maxhigh(struct interval_node *node,
        left_max = node->in_left ? node->in_left->in_max_high : 0;
        right_max = node->in_right ? node->in_right->in_max_high : 0;
        node->in_max_high  = max_u64(interval_high(node),
-                                    max_u64(left_max,right_max));
+                                    max_u64(left_max, right_max));
 }
 
 /* The left rotation "pivots" around the link from node to node->right, and