]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
bootm: Reduce arguments to boot_get_fdt()
authorSimon Glass <sjg@chromium.org>
Sat, 18 Nov 2023 21:05:10 +0000 (14:05 -0700)
committerTom Rini <trini@konsulko.com>
Wed, 13 Dec 2023 16:51:24 +0000 (11:51 -0500)
This function only uses one argument from bootm (argv[2]) so pass it in
directly.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
boot/bootm.c
boot/image-fdt.c
include/image.h

index cd11994e21ce95ebb2773b1ba212a7b9b21db8e3..5dc9cdeb244f173791eb7124c9aafd616bb90443 100644 (file)
@@ -529,8 +529,9 @@ int bootm_find_images(int flag, int argc, char *const argv[], ulong start,
                buf = map_sysmem(img_addr, 0);
 
                /* find flattened device tree */
-               ret = boot_get_fdt(buf, flag, argc, argv, IH_ARCH_DEFAULT,
-                                  &images, &images.ft_addr, &images.ft_len);
+               ret = boot_get_fdt(buf, argc > 2 ? argv[2] : NULL,
+                                  IH_ARCH_DEFAULT, &images, &images.ft_addr,
+                                  &images.ft_len);
                if (ret) {
                        puts("Could not find a valid device tree\n");
                        return 1;
index 6ff2d52d6c7011594eb87758a2e12c0ef5846066..08fca08b710a82cc2a7cb65848aa5b71d766771d 100644 (file)
@@ -447,19 +447,16 @@ static int select_fdt(struct bootm_headers *images, const char *select, u8 arch,
        return 0;
 }
 
-int boot_get_fdt(void *buf, int flag, int argc, char *const argv[], uint arch,
+int boot_get_fdt(void *buf, const char *select, uint arch,
                 struct bootm_headers *images, char **of_flat_tree,
                 ulong *of_size)
 {
-       ulong           fdt_addr;
-       char            *fdt_blob = NULL;
-       const char *select = NULL;
+       char *fdt_blob = NULL;
+       ulong fdt_addr;
 
        *of_flat_tree = NULL;
        *of_size = 0;
 
-       if (argc > 2)
-               select = argv[2];
        if (select || genimg_has_config(images)) {
                int ret;
 
index a4555f25fb56403a35e9220f46f60d35d5acd632..04f35de9d0823475863c6288b29d5cfcddb9e87b 100644 (file)
@@ -812,8 +812,7 @@ int fit_get_node_from_config(struct bootm_headers *images,
  * boot_get_fdt() - locate FDT devicetree to use for booting
  *
  * @buf: Pointer to image
- * @argc: command argument count
- * @argv: command argument list
+ * @select: FDT to select (this is normally argv[2] of the bootm command)
  * @arch: architecture (IH_ARCH_...)
  * @images: pointer to the bootm images structure
  * @of_flat_tree: pointer to a char* variable, will hold fdt start address
@@ -832,7 +831,7 @@ int fit_get_node_from_config(struct bootm_headers *images,
  *     1, if fdt image is found but corrupted
  *     of_flat_tree and of_size are set to 0 if no fdt exists
  */
-int boot_get_fdt(void *buf, int flag, int argc, char *const argv[], uint arch,
+int boot_get_fdt(void *buf, const char *select, uint arch,
                 struct bootm_headers *images, char **of_flat_tree,
                 ulong *of_size);