diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2006-05-02 00:11:25 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-05-02 00:11:25 +0200 |
commit | 8546e23902b6b84d30619cea050092234720ebd5 (patch) | |
tree | 0e25cfe5c2da3d29d1a93b084e81886717316ee8 | |
parent | 3577d3a33b8446c4cc4b7afdb44f9879b53ca293 (diff) | |
download | u-boot-8546e23902b6b84d30619cea050092234720ebd5.zip u-boot-8546e23902b6b84d30619cea050092234720ebd5.tar.gz u-boot-8546e23902b6b84d30619cea050092234720ebd5.tar.bz2 |
Declare load_serial_ymodem() when using CFG_CMD_LOADB.
Patch by Jon Loeliger, 01. May 2006
-rw-r--r-- | CHANGELOG | 3 | ||||
-rw-r--r-- | common/cmd_load.c | 5 |
2 files changed, 7 insertions, 1 deletions
@@ -2,6 +2,9 @@ Changes since U-Boot 1.1.4: ====================================================================== +* Declare load_serial_ymodem() when using CFG_CMD_LOADB. + Patch by Jon Loeliger, 01. May 2006 + * Fixed handling of bad checksums with "mkimage -l" * Added support for BC3450 board diff --git a/common/cmd_load.c b/common/cmd_load.c index 2432ee2..f63b8e8 100644 --- a/common/cmd_load.c +++ b/common/cmd_load.c @@ -33,9 +33,12 @@ DECLARE_GLOBAL_DATA_PTR; +#if (CONFIG_COMMANDS & CFG_CMD_LOADB) +static ulong load_serial_ymodem (ulong offset); +#endif + #if (CONFIG_COMMANDS & CFG_CMD_LOADS) static ulong load_serial (ulong offset); -static ulong load_serial_ymodem (ulong offset); static int read_record (char *buf, ulong len); # if (CONFIG_COMMANDS & CFG_CMD_SAVES) static int save_serial (ulong offset, ulong size); |