aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorHugo Villeneuve <hvilleneuve@dimonoff.com>2023-04-24 16:51:50 -0400
committerSimon Glass <sjg@chromium.org>2023-04-28 11:52:38 -0600
commitded112f24ca4078fa09dae181108f233657ec5fc (patch)
tree72b6f82412dcc8f8876501bb312ce6bcaa64caeb /common
parent37937aba3518ed782fdaae9d3772c59fd1e05af8 (diff)
downloadu-boot-ded112f24ca4078fa09dae181108f233657ec5fc.zip
u-boot-ded112f24ca4078fa09dae181108f233657ec5fc.tar.gz
u-boot-ded112f24ca4078fa09dae181108f233657ec5fc.tar.bz2
fdt_support: fix comments syntax error
Fix comments syntax error in fdt_node_offset_by_compat_reg() description: compatiable -> compatible Signed-off-by: Hugo Villeneuve <hvilleneuve@dimonoff.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r--common/fdt_support.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/fdt_support.c b/common/fdt_support.c
index dbceec6..2053fe3 100644
--- a/common/fdt_support.c
+++ b/common/fdt_support.c
@@ -1486,11 +1486,11 @@ out:
}
/**
- * fdt_node_offset_by_compat_reg: Find a node that matches compatiable and
+ * fdt_node_offset_by_compat_reg: Find a node that matches compatible and
* who's reg property matches a physical cpu address
*
* @blob: ptr to device tree
- * @compat: compatiable string to match
+ * @compat: compatible string to match
* @compat_off: property name
*
*/