From: Ilias Apalodimas Date: Sat, 26 Oct 2024 07:33:09 +0000 (+0300) Subject: cmd: fat: Make do_fat_size static X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-logo.png?a=commitdiff_plain;h=d4fa8da88c7b12d59c98347fb34827b0fdbe0f8b;p=u-boot.git cmd: fat: Make do_fat_size static This is only used locally,so make it static Signed-off-by: Ilias Apalodimas --- diff --git a/cmd/fat.c b/cmd/fat.c index 1655e80e94..5b7484dc1a 100644 --- a/cmd/fat.c +++ b/cmd/fat.c @@ -14,7 +14,7 @@ #include #include -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); }