]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
cmd: fat: Make do_fat_size static
authorIlias Apalodimas <ilias.apalodimas@linaro.org>
Sat, 26 Oct 2024 07:33:09 +0000 (10:33 +0300)
committerTom Rini <trini@konsulko.com>
Tue, 29 Oct 2024 22:17:47 +0000 (16:17 -0600)
This is only used locally,so make it static

Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
cmd/fat.c

index 1655e80e945028c79cc21354725a716a892a47e9..5b7484dc1af72b051632fcd326d30e8d5a8fd247 100644 (file)
--- 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);
 }