[U-Boot] [PATCH] mtd/nand/Makefile: simplify ifdefs

Andreas Bießmann andreas.devel at googlemail.com
Fri Nov 2 13:12:20 CET 2012


Signed-off-by: Andreas Bießmann <andreas.devel at googlemail.com>
Cc: Scott Wood <scottwood at freescale.com>
---
 drivers/mtd/nand/Makefile |    8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/drivers/mtd/nand/Makefile b/drivers/mtd/nand/Makefile
index beb99ca..862fad2 100644
--- a/drivers/mtd/nand/Makefile
+++ b/drivers/mtd/nand/Makefile
@@ -27,12 +27,8 @@ LIB	:= $(obj)libnand.o
 
 ifdef CONFIG_CMD_NAND
 ifdef CONFIG_SPL_BUILD
-ifdef CONFIG_SPL_NAND_SIMPLE
-COBJS-y += nand_spl_simple.o
-endif
-ifdef CONFIG_SPL_NAND_LOAD
-COBJS-y	+= nand_spl_load.o
-endif
+COBJS-$(CONFIG_SPL_NAND_SIMPLE)		+= nand_spl_simple.o
+COBJS-$(CONFIG_SPL_NAND_LOAD)		+= nand_spl_load.o
 else
 COBJS-y += nand.o
 COBJS-y += nand_bbt.o
-- 
1.7.10.4



More information about the U-Boot mailing list