summaryrefslogtreecommitdiff
path: root/include/spl.h
diff options
context:
space:
mode:
authorSean Anderson <seanga2@gmail.com>2023-11-08 11:48:42 -0500
committerTom Rini <trini@konsulko.com>2023-11-16 13:49:14 -0500
commitafdd2d98c29c443f348fd88198e59b78d50f4e2c (patch)
tree7ded72270622c1ecbe340989452ce9763ea6aa16 /include/spl.h
parentb63664be6a3d829639f8635365f22f4e1dd30aa1 (diff)
downloadu-boot-afdd2d98c29c443f348fd88198e59b78d50f4e2c.tar.gz
u-boot-afdd2d98c29c443f348fd88198e59b78d50f4e2c.tar.bz2
u-boot-afdd2d98c29c443f348fd88198e59b78d50f4e2c.zip
spl: Remove filename from spl_load_info
For filesystems, filename serves the same purpose as priv. However, spl_load_fit_image also uses it to determine whether to use a DMA-aligned buffer. This is beneficial for FAT, which uses a bounce-buffer if the destination is not DMA-aligned. However, this is unnecessary now that filesystems set bl_len to ARCH_DMA_MINALIGN instead. With this done, we can remove filename entirely. Signed-off-by: Sean Anderson <seanga2@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/spl.h')
-rw-r--r--include/spl.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/spl.h b/include/spl.h
index 5a355e0a1e..fec656d301 100644
--- a/include/spl.h
+++ b/include/spl.h
@@ -287,12 +287,10 @@ static inline void *spl_image_fdt_addr(struct spl_image_info *info)
*
* @priv: Private data for the device
* @bl_len: Block length for reading in bytes
- * @filename: Name of the fit image file.
* @read: Function to call to read from the device
*/
struct spl_load_info {
void *priv;
- const char *filename;
/**
* read() - Read from device
*