lib/rbtree: fix coding style of assignments

Leave blank space between the right-hand and left-hand side of the
assignment to meet the kernel coding style better.

Signed-off-by: chenqiwu <chenqiwu@xiaomi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Reviewed-by: Michel Lespinasse <walken@google.com>
Link: http://lkml.kernel.org/r/1582621140-25850-1-git-send-email-qiwuchen55@gmail.com
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
chenqiwu 2020-04-06 20:10:31 -07:00 committed by Linus Torvalds
parent caa7f776cc
commit 8d994cada2
2 changed files with 4 additions and 4 deletions

View File

@ -503,7 +503,7 @@ struct rb_node *rb_next(const struct rb_node *node)
if (node->rb_right) {
node = node->rb_right;
while (node->rb_left)
node=node->rb_left;
node = node->rb_left;
return (struct rb_node *)node;
}
@ -535,7 +535,7 @@ struct rb_node *rb_prev(const struct rb_node *node)
if (node->rb_left) {
node = node->rb_left;
while (node->rb_right)
node=node->rb_right;
node = node->rb_right;
return (struct rb_node *)node;
}

View File

@ -497,7 +497,7 @@ struct rb_node *rb_next(const struct rb_node *node)
if (node->rb_right) {
node = node->rb_right;
while (node->rb_left)
node=node->rb_left;
node = node->rb_left;
return (struct rb_node *)node;
}
@ -528,7 +528,7 @@ struct rb_node *rb_prev(const struct rb_node *node)
if (node->rb_left) {
node = node->rb_left;
while (node->rb_right)
node=node->rb_right;
node = node->rb_right;
return (struct rb_node *)node;
}