diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-28 10:44:43 -0700 |
---|---|---|
committer | Jagan Teki <jagan@amarulasolutions.com> | 2020-01-24 23:06:47 +0530 |
commit | 34971eec84e25773e29acfeeeae5ccb88f197ab4 (patch) | |
tree | d0082c5fa0919ba3fd59f48e62d46b3dca6b3944 /include | |
parent | 2e11cb086fc21cf9dee2e7280fd5696e0a14016d (diff) | |
download | u-boot-34971eec84e25773e29acfeeeae5ccb88f197ab4.tar.gz |
common: Move do_tftpb() to net.h
This function belongs in the network header file. Move it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/common.h | 3 | ||||
-rw-r--r-- | include/net.h | 11 |
2 files changed, 11 insertions, 3 deletions
diff --git a/include/common.h b/include/common.h index 84fd275202..7e2de23ae4 100644 --- a/include/common.h +++ b/include/common.h @@ -80,9 +80,6 @@ extern ulong load_addr; /* Default Load Address */ extern ulong save_addr; /* Default Save Address */ extern ulong save_size; /* Default Save Size */ -/* common/cmd_net.c */ -int do_tftpb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); - /* common/cmd_fat.c */ int do_fat_fsload(cmd_tbl_t *, int, int, char * const []); diff --git a/include/net.h b/include/net.h index 834f244982..a8ee08150f 100644 --- a/include/net.h +++ b/include/net.h @@ -51,6 +51,17 @@ struct in_addr { }; /** + * do_tftpb - Run the tftpboot command + * + * @cmdtp: Command information for tftpboot + * @flag: Command flags (CMD_FLAG_...) + * @argc: Number of arguments + * @argv: List of arguments + * @return result (see enum command_ret_t) + */ +int do_tftpb(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]); + +/** * An incoming packet handler. * @param pkt pointer to the application packet * @param dport destination UDP port |