[PATCH v5 03/23] lib/bootconfig: fix typo "uder" in xbc_node_find_next_leaf()

Josh Law posted 23 patches 3 weeks, 2 days ago
There is a newer version of this series
[PATCH v5 03/23] lib/bootconfig: fix typo "uder" in xbc_node_find_next_leaf()
Posted by Josh Law 3 weeks, 2 days ago
Fix "uder" to "under" in the xbc_node_find_next_leaf() kerneldoc
comment.

Signed-off-by: Josh Law <objecting@objecting.org>
---
 lib/bootconfig.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bootconfig.c b/lib/bootconfig.c
index 53aedc042f6e..35091617bca5 100644
--- a/lib/bootconfig.c
+++ b/lib/bootconfig.c
@@ -364,7 +364,7 @@ struct xbc_node * __init xbc_node_find_next_leaf(struct xbc_node *root,
 			node = xbc_node_get_parent(node);
 			if (node == root)
 				return NULL;
-			/* User passed a node which is not uder parent */
+			/* User passed a node which is not under parent */
 			if (WARN_ON(!node))
 				return NULL;
 		}
-- 
2.34.1