diff options
author | wdenk <wdenk> | 2005-04-05 23:32:21 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-04-05 23:32:21 +0000 |
commit | 3c2b3d454daa6024cc20d166b2f50efde169c7fe (patch) | |
tree | f66cfb007a5dec1d47a19b2cab8a9dc127468347 /common/cmd_net.c | |
parent | b304c96871c92d1ec8fa57dda36cc198660fd10e (diff) | |
download | u-boot-imx-3c2b3d454daa6024cc20d166b2f50efde169c7fe.zip u-boot-imx-3c2b3d454daa6024cc20d166b2f50efde169c7fe.tar.gz u-boot-imx-3c2b3d454daa6024cc20d166b2f50efde169c7fe.tar.bz2 |
* Patch by Ladislav Michl, 05 Apr 2005:
Add support for VoiceBlue board.
* Patch by Ladislav Michl, 05 Apr 2005:
Fix netboot_common() prototypes.
* Cleanup.
Diffstat (limited to 'common/cmd_net.c')
-rw-r--r-- | common/cmd_net.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cmd_net.c b/common/cmd_net.c index 18ea4b9..2cb2c5d 100644 --- a/common/cmd_net.c +++ b/common/cmd_net.c @@ -33,7 +33,7 @@ extern int do_bootm (cmd_tbl_t *, int, int, char *[]); -static int netboot_common (int, cmd_tbl_t *, int , char *[]); +static int netboot_common (proto_t, cmd_tbl_t *, int , char *[]); int do_bootp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) { @@ -152,7 +152,7 @@ static void netboot_update_env (void) } static int -netboot_common (int proto, cmd_tbl_t *cmdtp, int argc, char *argv[]) +netboot_common (proto_t proto, cmd_tbl_t *cmdtp, int argc, char *argv[]) { char *s; int rcode = 0; |