From: Wei Yang Date: Tue, 30 Oct 2018 22:05:42 +0000 (-0700) Subject: lib/rbtree.c: fix typo in comment of rb_insert_augmented() X-Git-Tag: v5.4-rc1~2304^2~70 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7e5ca363a5a1ec42c54dc1e0644b361a2daf984c;p=platform%2Fkernel%2Flinux-rpi.git lib/rbtree.c: fix typo in comment of rb_insert_augmented() The function name in the comment is not correct. Link: http://lkml.kernel.org/r/20181010021344.60433-1-richard.weiyang@gmail.com Signed-off-by: Wei Yang Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/linux/rbtree_augmented.h b/include/linux/rbtree_augmented.h index af8a61b..9510c67 100644 --- a/include/linux/rbtree_augmented.h +++ b/include/linux/rbtree_augmented.h @@ -51,8 +51,8 @@ extern void __rb_insert_augmented(struct rb_node *node, * * On insertion, the user must update the augmented information on the path * leading to the inserted node, then call rb_link_node() as usual and - * rb_augment_inserted() instead of the usual rb_insert_color() call. - * If rb_augment_inserted() rebalances the rbtree, it will callback into + * rb_insert_augmented() instead of the usual rb_insert_color() call. + * If rb_insert_augmented() rebalances the rbtree, it will callback into * a user provided function to update the augmented information on the * affected subtrees. */