From 7255c5059df9df0082bea450d6cf379ede2ac2d0 Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 6 Nov 2012 14:57:01 +0000 Subject: Patch to removed MMCSD NSLOTS warning from Freddie Chopin git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5316 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/drivers/mmcsd/Make.defs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'nuttx/drivers/mmcsd/Make.defs') diff --git a/nuttx/drivers/mmcsd/Make.defs b/nuttx/drivers/mmcsd/Make.defs index 850456597..455ac286d 100644 --- a/nuttx/drivers/mmcsd/Make.defs +++ b/nuttx/drivers/mmcsd/Make.defs @@ -33,9 +33,17 @@ # ############################################################################ +if ($(CONFIG_MMCSD),y) + # Include MMC/SD drivers -CSRCS += mmcsd_sdio.c mmcsd_spi.c mmcsd_debug.c +if ($(CONFIG_MMCSD_SDIO),y) +CSRCS += mmcsd_sdio.c +endif + +if ($(CONFIG_MMCSD_SPI),y) +CSRCS += mmcsd_spi.c mmcsd_debug.c +endif # Include MMC/SD driver build support @@ -43,4 +51,6 @@ DEPPATH += --dep-path mmcsd VPATH += :mmcsd CFLAGS += ${shell $(TOPDIR)/tools/incdir.sh $(INCDIROPT) "$(CC)" $(TOPDIR)/drivers/mmcsd} +endif + -- cgit v1.2.3