diff options
author | Ilias Apalodimas <ilias.apalodimas@linaro.org> | 2024-10-26 10:33:09 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-10-29 16:17:47 -0600 |
commit | d4fa8da88c7b12d59c98347fb34827b0fdbe0f8b (patch) | |
tree | 7419c3940f6367c1c1949e17ea30b47f01d5bbe3 /cmd/fat.c | |
parent | ede2361998e5e2e6d89abb08f1f0c816d63ed221 (diff) |
cmd: fat: Make do_fat_size static
This is only used locally,so make it static
Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Diffstat (limited to 'cmd/fat.c')
-rw-r--r-- | cmd/fat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/fat.c b/cmd/fat.c index 1655e80e945..5b7484dc1af 100644 --- a/cmd/fat.c +++ b/cmd/fat.c @@ -14,7 +14,7 @@ #include <part.h> #include <asm/cache.h> -int do_fat_size(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) +static int do_fat_size(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { return do_size(cmdtp, flag, argc, argv, FS_TYPE_FAT); } |