Remove unneeded #include <malloc.h>
authorWolfgang Denk <wd@pollux.(none)>
Sun, 25 Sep 2005 15:02:27 +0000 (17:02 +0200)
committerWolfgang Denk <wd@pollux.(none)>
Sun, 25 Sep 2005 15:02:27 +0000 (17:02 +0200)
Patch by Ladislav Michl, 22 Feb 2005

CHANGELOG
common/env_dataflash.c
common/env_eeprom.c
common/env_nand.c
common/env_nowhere.c
common/env_nvram.c
common/main.c

index 7009ce7..659c956 100644 (file)
--- 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
 
index 8bfbbc9..8834da0 100644 (file)
@@ -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;
index 300af6f..50c623e 100644 (file)
@@ -31,7 +31,6 @@
 #include <command.h>
 #include <environment.h>
 #include <linux/stddef.h>
-#include <malloc.h>
 
 env_t *env_ptr = NULL;
 
index 516aed7..60aba1e 100644 (file)
@@ -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))
index b274c03..ee4237c 100644 (file)
@@ -31,7 +31,6 @@
 #include <command.h>
 #include <environment.h>
 #include <linux/stddef.h>
-#include <malloc.h>
 
 env_t *env_ptr = NULL;
 
index 2c831d1..a406e42 100644 (file)
@@ -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);
index 9f649db..2922624 100644 (file)
@@ -26,7 +26,6 @@
 #include <common.h>
 #include <watchdog.h>
 #include <command.h>
-#include <malloc.h>
 
 #ifdef CFG_HUSH_PARSER
 #include <hush.h>