From patchwork Fri Nov 2 12:12:20 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [U-Boot] mtd/nand/Makefile: simplify ifdefs Date: Fri, 02 Nov 2012 02:12:20 -0000 From: =?utf-8?q?Andreas_Bie=C3=9Fmann?= X-Patchwork-Id: 196551 Message-Id: <1351858340-17062-1-git-send-email-andreas.devel@googlemail.com> To: u-boot@lists.denx.de Cc: Scott Wood Signed-off-by: Andreas Bießmann Cc: Scott Wood --- 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