mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
net: add static to do_tftpput()
This is only used in cmd/net.c Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
b044cc1dee
commit
0c1b869b2e
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ U_BOOT_CMD(
|
|||
);
|
||||
|
||||
#ifdef CONFIG_CMD_TFTPPUT
|
||||
int do_tftpput(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
||||
static int do_tftpput(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
||||
{
|
||||
return netboot_common(TFTPPUT, cmdtp, argc, argv);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue