summaryrefslogtreecommitdiff
path: root/include/bootmeth.h
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2024-11-15 16:19:21 -0700
committerTom Rini <[email protected]>2025-01-15 08:48:42 -0600
commitff4c9a4b6fac767f28f668c708e79f3d618061a8 (patch)
treebe4cd3048e55ef967ea39ea2eac6a33542439652 /include/bootmeth.h
parent985f9f703914aa742062abb120c7b87e63410d26 (diff)
Update bootmeth_alloc_other() to record images
Update this function to add the image to the list. Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'include/bootmeth.h')
-rw-r--r--include/bootmeth.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/bootmeth.h b/include/bootmeth.h
index 788d4046ce9..26de593a9a4 100644
--- a/include/bootmeth.h
+++ b/include/bootmeth.h
@@ -384,12 +384,13 @@ int bootmeth_alloc_file(struct bootflow *bflow, uint size_limit, uint align,
*
* @bflow: Information about file to read
* @fname: Filename to read from (within bootflow->subdir)
+ * @type: File type (IH_TYPE_...)
* @bufp: Returns a pointer to the allocated buffer
* @sizep: Returns the size of the buffer
* Return: 0 if OK, -ENOMEM if out of memory, other -ve on other error
*/
int bootmeth_alloc_other(struct bootflow *bflow, const char *fname,
- void **bufp, uint *sizep);
+ enum bootflow_img_t type, void **bufp, uint *sizep);
/**
* bootmeth_common_read_file() - Common handler for reading a file