diff options
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | common/main.c | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -5,6 +5,8 @@ Changes for U-Boot 1.1.4: * Change board message on AMCC Yosemite & Yellowstone to common style Patch by Stefan Roese, 3 Oct 2005 +* Fix compiler warning + * Fix FEC PHY addresses for TQM85xx boards * Fix uninitialized variable problem in hush shell diff --git a/common/main.c b/common/main.c index 2922624..1389958 100644 --- a/common/main.c +++ b/common/main.c @@ -26,6 +26,9 @@ #include <common.h> #include <watchdog.h> #include <command.h> +#ifdef CONFIG_MODEM_SUPPORT +#include <malloc.h> /* for free() prototype */ +#endif #ifdef CFG_HUSH_PARSER #include <hush.h> |