aboutsummaryrefslogtreecommitdiff
path: root/include/spl_load.h
diff options
context:
space:
mode:
authorSean Anderson2023-11-08 11:48:49 -0500
committerTom Rini2023-11-16 13:49:14 -0500
commit682184e9b9a6f67b108209651ad2ce90aae9ec9d (patch)
tree79c22b0938f61ffb7e0e28b55eccfe617523e55c /include/spl_load.h
parentb8ed72256748119d392c63c6fa8b1f8bb156fd38 (diff)
spl: Convert fat to spl_load
This converts the fat loader to use spl_load. Some platforms are very tight on space, so we take care to only include the code we really need. Signed-off-by: Sean Anderson <seanga2@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/spl_load.h')
-rw-r--r--include/spl_load.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/spl_load.h b/include/spl_load.h
index 65aa6bb4493..5e0460d956d 100644
--- a/include/spl_load.h
+++ b/include/spl_load.h
@@ -96,6 +96,7 @@ static inline int _spl_load(struct spl_image_info *spl_image,
*/
#define SPL_LOAD_USERS \
IS_ENABLED(CONFIG_SPL_FS_EXT4) + \
+ IS_ENABLED(CONFIG_SPL_FS_FAT) + \
0
#if SPL_LOAD_USERS > 1