diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-28 10:44:44 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-17 13:26:49 -0500 |
commit | 1444998230824ac9e95c14073a00e99e59b78ed8 (patch) | |
tree | 781cd49bf140e2c2ddd0bcbb30113c547d87cbbf /cmd/fat.c | |
parent | 77f4e477ae85e7ad229a86337a2b951aa7b48e68 (diff) | |
download | u-boot-1444998230824ac9e95c14073a00e99e59b78ed8.tar.gz u-boot-1444998230824ac9e95c14073a00e99e59b78ed8.tar.bz2 u-boot-1444998230824ac9e95c14073a00e99e59b78ed8.zip |
common: Move functions for loading from fat/ext2 to fs.h
These are filesystem functions and belong in the filesystem header file.
Move them.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd/fat.c')
-rw-r--r-- | cmd/fat.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ U_BOOT_CMD( " and determine its size." ); -int do_fat_fsload (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) +int do_fat_fsload(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) { return do_load(cmdtp, flag, argc, argv, FS_TYPE_FAT); } |