diff options
-rw-r--r-- | CHANGELOG | 3 | ||||
-rw-r--r-- | common/env_dataflash.c | 1 | ||||
-rw-r--r-- | common/env_eeprom.c | 1 | ||||
-rw-r--r-- | common/env_nand.c | 1 | ||||
-rw-r--r-- | common/env_nowhere.c | 1 | ||||
-rw-r--r-- | common/env_nvram.c | 1 | ||||
-rw-r--r-- | common/main.c | 1 |
7 files changed, 3 insertions, 6 deletions
diff --git a/CHANGELOG b/CHANGELOG index 7009ce74b6b..659c956bfce 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,9 @@ Changes for U-Boot 1.1.4: ====================================================================== +* Remove unneeded #include <malloc.h> + Patch by Ladislav Michl, 22 Feb 2005 + * Add cramfs support for m68k Patch by Zachary Landau, 21 Feb 2005 diff --git a/common/env_dataflash.c b/common/env_dataflash.c index 8bfbbc943e1..8834da032bd 100644 --- a/common/env_dataflash.c +++ b/common/env_dataflash.c @@ -24,7 +24,6 @@ #include <command.h> #include <environment.h> #include <linux/stddef.h> -#include <malloc.h> #include <dataflash.h> env_t *env_ptr = NULL; diff --git a/common/env_eeprom.c b/common/env_eeprom.c index 300af6fcfe1..50c623e37e3 100644 --- a/common/env_eeprom.c +++ b/common/env_eeprom.c @@ -31,7 +31,6 @@ #include <command.h> #include <environment.h> #include <linux/stddef.h> -#include <malloc.h> env_t *env_ptr = NULL; diff --git a/common/env_nand.c b/common/env_nand.c index 516aed7326d..60aba1e7e66 100644 --- a/common/env_nand.c +++ b/common/env_nand.c @@ -36,7 +36,6 @@ #include <command.h> #include <environment.h> #include <linux/stddef.h> -#include <malloc.h> #include <linux/mtd/nand.h> #if ((CONFIG_COMMANDS&(CFG_CMD_ENV|CFG_CMD_NAND)) == (CFG_CMD_ENV|CFG_CMD_NAND)) diff --git a/common/env_nowhere.c b/common/env_nowhere.c index b274c035574..ee4237c7e90 100644 --- a/common/env_nowhere.c +++ b/common/env_nowhere.c @@ -31,7 +31,6 @@ #include <command.h> #include <environment.h> #include <linux/stddef.h> -#include <malloc.h> env_t *env_ptr = NULL; diff --git a/common/env_nvram.c b/common/env_nvram.c index 2c831d14d77..a406e427a24 100644 --- a/common/env_nvram.c +++ b/common/env_nvram.c @@ -47,7 +47,6 @@ #include <command.h> #include <environment.h> #include <linux/stddef.h> -#include <malloc.h> #ifdef CFG_NVRAM_ACCESS_ROUTINE extern void *nvram_read(void *dest, const long src, size_t count); diff --git a/common/main.c b/common/main.c index 9f649dbcd31..29226244a1a 100644 --- a/common/main.c +++ b/common/main.c @@ -26,7 +26,6 @@ #include <common.h> #include <watchdog.h> #include <command.h> -#include <malloc.h> #ifdef CFG_HUSH_PARSER #include <hush.h> |