]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - include/spl.h
spl: Update fat functions to take an spl_image parameter
[people/ms/u-boot.git] / include / spl.h
index 5ef9ae6e4bbd3385e3c4978622781f9f9b60dd60..1f4f4e523765941a187cc794692c28604257eb47 100644 (file)
@@ -184,9 +184,11 @@ struct spl_image_loader {
        }
 
 /* SPL FAT image functions */
-int spl_load_image_fat(struct blk_desc *block_dev, int partition,
+int spl_load_image_fat(struct spl_image_info *spl_image,
+                      struct blk_desc *block_dev, int partition,
                       const char *filename);
-int spl_load_image_fat_os(struct blk_desc *block_dev, int partition);
+int spl_load_image_fat_os(struct spl_image_info *spl_image,
+                         struct blk_desc *block_dev, int partition);
 
 void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image);