env_onenand: Move conditional compilation to Makefile

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
This commit is contained in:
Jean-Christophe PLAGNIOL-VILLARD 2008-09-10 22:48:00 +02:00
parent 9656138ff1
commit 55c5f49910
2 changed files with 1 additions and 6 deletions

View File

@ -55,7 +55,7 @@ COBJS-$(CONFIG_ENV_IS_IN_EEPROM) += env_eeprom.o
COBJS-y += env_flash.o
COBJS-$(CONFIG_ENV_IS_IN_NAND) += env_nand.o
COBJS-$(CONFIG_ENV_IS_IN_NVRAM) += env_nvram.o
COBJS-y += env_onenand.o
COBJS-$(CONFIG_ENV_IS_IN_ONENAND) += env_onenand.o
COBJS-y += env_sf.o
COBJS-y += env_nowhere.o

View File

@ -22,9 +22,6 @@
*/
#include <common.h>
#if defined(CONFIG_ENV_IS_IN_ONENAND) /* Environment is in OneNAND */
#include <command.h>
#include <environment.h>
#include <linux/stddef.h>
@ -126,5 +123,3 @@ int env_init(void)
return 0;
}
#endif /* CONFIG_ENV_IS_IN_ONENAND */