]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
fdtgrep: Correct references to fdt_find_regions()
authorSimon Glass <sjg@chromium.org>
Sun, 17 Dec 2023 16:36:17 +0000 (09:36 -0700)
committerSimon Glass <sjg@chromium.org>
Sun, 31 Dec 2023 14:21:02 +0000 (07:21 -0700)
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

index 41d8b41252dd90ab82be90c8012ffbf6da802d89..b56d2fe21c9aaf4cc187511e0d88916116dbf0b0 100644 (file)
@@ -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;
                }