diff mbox series

[04/10] fdtgrep: Correct references to fdt_find_regions()

Message ID 20231217163627.2339802-5-sjg@chromium.org
State Accepted
Commit f3acd206859ed516f79ba83da587196f66fe57d2
Delegated to: Simon Glass
Headers show
Series Make bootph tags transistive to parents | expand

Commit Message

Simon Glass Dec. 17, 2023, 4:36 p.m. UTC
The function name is actually fdtgrep_find_regions() so update the name
in comments accordinging.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 tools/fdtgrep.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Simon Glass Jan. 1, 2024, 4:49 p.m. UTC | #1
The function name is actually fdtgrep_find_regions() so update the name
in comments accordinging.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 tools/fdtgrep.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Applied to u-boot-dm/next, thanks!
diff mbox series

Patch

diff --git a/tools/fdtgrep.c b/tools/fdtgrep.c
index 41d8b41252dd..b56d2fe21c9a 100644
--- a/tools/fdtgrep.c
+++ b/tools/fdtgrep.c
@@ -576,10 +576,10 @@  static int check_type_include(void *priv, int type, const char *data, int size)
 }
 
 /**
- * h_include() - Include handler function for fdt_find_regions()
+ * h_include() - Include handler function for fdtgrep_find_regions()
  *
  * This function decides whether to include or exclude a node, property or
- * compatible string. The function is defined by fdt_find_regions().
+ * compatible string. The function is defined by fdtgrep_find_regions().
  *
  * The algorithm is documented in the code - disp->invert is 0 for normal
  * operation, and 1 to invert the sense of all matches.
@@ -822,7 +822,7 @@  static int do_fdtgrep(struct display_info *disp, const char *filename)
 				region, max_regions, path, sizeof(path),
 				disp->flags);
 		if (count < 0) {
-			report_error("fdt_find_regions", count);
+			report_error("fdtgrep_find_regions", count);
 			free(region);
 			return -1;
 		}