From 34971eec84e25773e29acfeeeae5ccb88f197ab4 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sat, 28 Dec 2019 10:44:43 -0700 Subject: common: Move do_tftpb() to net.h This function belongs in the network header file. Move it. Signed-off-by: Simon Glass --- include/common.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'include/common.h') 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 []); -- cgit