diff options
author | Wolfgang Denk <wd@pollux.(none)> | 2005-09-25 17:02:27 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.(none)> | 2005-09-25 17:02:27 +0200 |
commit | 31466294b0c4ff372288229b0997de51f8ecaf3f (patch) | |
tree | d8a70736615e7e0ee37a3fbc0a8a06b4dcc6b00e /common | |
parent | b66eb5282d568225abad5b3b61cc0968be35fc0d (diff) | |
download | u-boot-31466294b0c4ff372288229b0997de51f8ecaf3f.zip u-boot-31466294b0c4ff372288229b0997de51f8ecaf3f.tar.gz u-boot-31466294b0c4ff372288229b0997de51f8ecaf3f.tar.bz2 |
Remove unneeded #include <malloc.h>
Patch by Ladislav Michl, 22 Feb 2005
Diffstat (limited to 'common')
-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 |
6 files changed, 0 insertions, 6 deletions
diff --git a/common/env_dataflash.c b/common/env_dataflash.c index 8bfbbc9..8834da0 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 300af6f..50c623e 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 516aed7..60aba1e 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 b274c03..ee4237c 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 2c831d1..a406e42 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 9f649db..2922624 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> |